WTF
DisallowCType.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #ifndef WTF_DisallowCType_h
00030 #define WTF_DisallowCType_h
00031
00032
00033
00034
00035
00036
00037
00038 #include <ctype.h>
00039
00040 #undef isalnum
00041 #undef isalpha
00042 #undef isascii
00043 #undef isblank
00044 #undef iscntrl
00045 #undef isdigit
00046 #undef isgraph
00047 #undef islower
00048 #undef isprint
00049 #undef ispunct
00050 #undef isspace
00051 #undef isupper
00052 #undef isxdigit
00053 #undef toascii
00054 #undef tolower
00055 #undef toupper
00056
00057 #define isalnum WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00058 #define isalpha WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00059 #define isascii WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00060 #define isblank WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00061 #define iscntrl WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00062 #define isdigit WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00063 #define isgraph WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00064 #define islower WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00065 #define isprint WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00066 #define ispunct WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00067 #define isspace WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00068 #define isupper WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00069 #define isxdigit WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00070 #define toascii WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00071 #define tolower WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00072 #define toupper WTF_Please_use_ASCIICType_instead_of_ctype_see_comment_in_ASCIICType_h
00073
00074 #endif