Changeset 95975 in vbox for trunk/include/iprt/nocrt/ctype.h
- Timestamp:
- Aug 2, 2022 12:55:08 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/ctype.h
r93115 r95975 30 30 #endif 31 31 32 #include <iprt/ctype.h> 33 34 #define isspace(a_ch) RT_C_IS_SPACE(a_ch) 35 #define isblank(a_ch) RT_C_IS_BLANK(a_ch) 36 #define isdigit(a_ch) RT_C_IS_DIGIT(a_ch) 37 #define isxdigit(a_ch) RT_C_IS_XDIGIT(a_ch) 38 #define isalpha(a_ch) RT_C_IS_ALPHA(a_ch) 39 #define isalnum(a_ch) RT_C_IS_ALNUM(a_ch) 40 #define iscntrl(a_ch) RT_C_IS_CNTRL(a_ch) 41 #define isgraph(a_ch) RT_C_IS_GRAPH(a_ch) 42 #define ispunct(a_ch) RT_C_IS_PUNCT(a_ch) 43 #define isprint(a_ch) RT_C_IS_PRINT(a_ch) 44 #define isupper(a_ch) RT_C_IS_UPPER(a_ch) 45 #define islower(a_ch) RT_C_IS_LOWER(a_ch) 46 32 47 #endif /* !IPRT_INCLUDED_nocrt_ctype_h */ 33 48
Note:
See TracChangeset
for help on using the changeset viewer.