Changeset 7853 in vbox
- Timestamp:
- Apr 9, 2008 6:07:59 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/ctype.h
r5999 r7853 49 49 #define RT_C_IS_LOWER(ch) ( (ch) >= 'a' && (ch) <= 'z' ) 50 50 #define RT_C_IS_GRAPH(ch) ( RT_C_IS_PRINT(ch) && !RT_C_IS_BLANK(ch) ) 51 #define RT_C_IS_ODIGIT(ch) ( (ch) >= '0' && (ch) <= '7' ) 51 52 #define RT_C_IS_PRINT(ch) ( (ch) >= 32 && (ch) < 127 ) /**< @todo possibly incorrect */ 52 53 #define RT_C_IS_PUNCT(ch) ( (ch) == ',' || (ch) == '.' || (ch) == ':' || (ch) == ';' || (ch) == '!' || (ch) == '?' ) /**< @todo possibly incorrect */
Note:
See TracChangeset
for help on using the changeset viewer.