Changeset 12069 in webkit for trunk/JavaScriptCore/JavaScriptCorePrefix.h
- Timestamp:
- Jan 13, 2006, 1:32:51 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/JavaScriptCorePrefix.h
r11962 r12069 34 34 #define isalpha(c) __istype((c), _CTYPE_A) 35 35 #define iscntrl(c) __istype((c), _CTYPE_C) 36 #define isdigit(c) __isctype((c), _CTYPE_D) 36 #define isdigit(c) __isctype((c), _CTYPE_D) /* ANSI -- locale independent */ 37 37 #define isgraph(c) __istype((c), _CTYPE_G) 38 38 #define islower(c) __istype((c), _CTYPE_L) … … 41 41 #define isspace(c) __istype((c), _CTYPE_S) 42 42 #define isupper(c) __istype((c), _CTYPE_U) 43 #define isxdigit(c) __isctype((c), _CTYPE_X) 43 #define isxdigit(c) __isctype((c), _CTYPE_X) /* ANSI -- locale independent */ 44 44 #define tolower(c) __tolower(c) 45 45 #define toupper(c) __toupper(c)
Note:
See TracChangeset
for help on using the changeset viewer.