Searched defs:ISALNUM (Results 1 – 7 of 7) sorted by relevance
40 #define ISALNUM(x) (ISDIGIT(x) || ISLOWER(x) || ISUPPER(x)) macro
44 #define ISALNUM(c) Py_ISALNUM(c) macro
90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) macro
277 #define ISALNUM(x) (isalnum((int) ((unsigned char)x))) macro
2375 IMPL_CTYPE_FN(ISALNUM) in IMPL_CTYPE_FN() argument
947 static inline bool ISALNUM (unsigned char c) in ISALNUM() function
149 #define ISALNUM(c) (isascii (c) && isalnum (c)) macro