mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 11:14:18 +01:00
adf3764857
git-subtree-dir: contrib/wireguard-tools git-subtree-mainline:9142a2a37b
git-subtree-split:7e00bf8773
30 lines
676 B
C
30 lines
676 B
C
/* SPDX-License-Identifier: GPL-2.0 OR MIT */
|
|
/*
|
|
* Copyright (C) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
|
*
|
|
* Specialized constant-time ctype.h reimplementations that aren't locale-specific.
|
|
*/
|
|
|
|
#ifndef CTYPE_H
|
|
#define CTYPE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
static inline bool char_is_space(int c)
|
|
{
|
|
unsigned char d = c - 9;
|
|
return (0x80001FU >> (d & 31)) & (1U >> (d >> 5));
|
|
}
|
|
|
|
static inline bool char_is_digit(int c)
|
|
{
|
|
return (unsigned int)(('0' - 1 - c) & (c - ('9' + 1))) >> (sizeof(c) * 8 - 1);
|
|
}
|
|
|
|
static inline bool char_is_alpha(int c)
|
|
{
|
|
return (unsigned int)(('a' - 1 - (c | 32)) & ((c | 32) - ('z' + 1))) >> (sizeof(c) * 8 - 1);
|
|
}
|
|
|
|
#endif
|