Go to the source code of this file.
Macros | |
#define | LUA_USE_CTYPE 1 |
#define | lislalpha(c) (isalpha(c) || (c) == '_') |
#define | lislalnum(c) (isalnum(c) || (c) == '_') |
#define | lisdigit(c) (isdigit(c)) |
#define | lisspace(c) (isspace(c)) |
#define | lisprint(c) (isprint(c)) |
#define | lisxdigit(c) (isxdigit(c)) |
#define | ltolower(c) (tolower(c)) |
Definition at line 84 of file lctype.h.
Referenced by llex(), lua_strx2number(), luaO_hexavalue(), read_numeral(), read_string(), and readdecesc().
Definition at line 86 of file lctype.h.
Referenced by luaX_token2str().
Definition at line 85 of file lctype.h.
Referenced by lua_strx2number(), luaO_str2d(), and read_string().
Definition at line 87 of file lctype.h.
Referenced by read_numeral(), readhexa(), and readhexaesc().
Definition at line 89 of file lctype.h.
Referenced by luaO_hexavalue().