1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #pragma once 3 #ifndef _LINUX_CTYPE_H 4 #define _LINUX_CTYPE_H 5 6 // #include <linux/compiler.h> 7 8 /* 9 * NOTE! This ctype does not handle EOF like the standard C 10 * library is required to. 11 */ 12 13 #define _U 0x01 /* upper */ 14 #define _L 0x02 /* lower */ 15 #define _D 0x04 /* digit */ 16 #define _C 0x08 /* cntrl */ 17 #define _P 0x10 /* punct */ 18 #define _S 0x20 /* white space (space/lf/tab) */ 19 #define _X 0x40 /* hex digit */ 20 #define _SP 0x80 /* hard space (0x20) */ 21 22 extern const unsigned char _ctype[]; 23 24 #define __ismask(x) (_ctype[(int)(unsigned char)(x)]) 25 26 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) 27 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) 28 #define iscntrl(c) ((__ismask(c)&(_C)) != 0) 29 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) 30 #define islower(c) ((__ismask(c)&(_L)) != 0) 31 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) 32 #define ispunct(c) ((__ismask(c)&(_P)) != 0) 33 /* Note: isspace() must return false for %NUL-terminator */ 34 #define isspace(c) ((__ismask(c)&(_S)) != 0) 35 #define isupper(c) ((__ismask(c)&(_U)) != 0) 36 #define isxdigit(c) ((__ismask(c)&(_D|_X)) != 0) 37 38 #define isascii(c) (((unsigned char)(c))<=0x7f) 39 #define toascii(c) (((unsigned char)(c))&0x7f) 40 41 #if __has_builtin(__builtin_isdigit) 42 #define isdigit(c) __builtin_isdigit(c) 43 #else isdigit(int c)44static inline int isdigit(int c) 45 { 46 return '0' <= c && c <= '9'; 47 } 48 #endif 49 __tolower(unsigned char c)50static inline unsigned char __tolower(unsigned char c) 51 { 52 if (isupper(c)) 53 c -= 'A'-'a'; 54 return c; 55 } 56 __toupper(unsigned char c)57static inline unsigned char __toupper(unsigned char c) 58 { 59 if (islower(c)) 60 c -= 'a'-'A'; 61 return c; 62 } 63 64 #define tolower(c) __tolower(c) 65 #define toupper(c) __toupper(c) 66 67 /* 68 * Fast implementation of tolower() for internal usage. Do not use in your 69 * code. 70 */ _tolower(const char c)71static inline char _tolower(const char c) 72 { 73 return c | 0x20; 74 } 75 76 /* Fast check for octal digit */ isodigit(const char c)77static inline int isodigit(const char c) 78 { 79 return c >= '0' && c <= '7'; 80 } 81 82 #endif 83