OLD | NEW |
1 /* | 1 /* |
2 ** $Id: lctype.h,v 1.12 2011/07/15 12:50:29 roberto Exp $ | 2 ** $Id: lctype.h,v 1.12 2011/07/15 12:50:29 roberto Exp $ |
3 ** 'ctype' functions for Lua | 3 ** 'ctype' functions for Lua |
4 ** See Copyright Notice in lua.h | 4 ** See Copyright Notice in lua.h |
5 */ | 5 */ |
6 | 6 |
7 #ifndef lctype_h | 7 #ifndef lctype_h |
8 #define lctype_h | 8 #define lctype_h |
9 | 9 |
10 #include "lua.h" | 10 #include "lua.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 #define lisdigit(c) (isdigit(c)) | 85 #define lisdigit(c) (isdigit(c)) |
86 #define lisspace(c) (isspace(c)) | 86 #define lisspace(c) (isspace(c)) |
87 #define lisprint(c) (isprint(c)) | 87 #define lisprint(c) (isprint(c)) |
88 #define lisxdigit(c) (isxdigit(c)) | 88 #define lisxdigit(c) (isxdigit(c)) |
89 | 89 |
90 #define ltolower(c) (tolower(c)) | 90 #define ltolower(c) (tolower(c)) |
91 | 91 |
92 #endif /* } */ | 92 #endif /* } */ |
93 | 93 |
94 #endif | 94 #endif |
95 | |
OLD | NEW |