aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/ctype.h
blob: 98b22837798a841db2ec7c1d3598aa65b0ebf71f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * 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