allows utf8 identifiers in lua (as is in standard luajit)
[luatex.git] / source / libs / lua52 / lua-5.2.3 / src / lctype.h
blob8af7b6841817c9db8309ccc23662e5b1cf243fd7
1 /*
2 ** $Id: lctype.h,v 1.12.1.1 2013/04/12 18:48:47 roberto Exp $
3 ** 'ctype' functions for Lua
4 ** See Copyright Notice in lua.h
5 */
7 #ifndef lctype_h
8 #define lctype_h
10 #include "lua.h"
14 ** WARNING: the functions defined here do not necessarily correspond
15 ** to the similar functions in the standard C ctype.h. They are
16 ** optimized for the specific needs of Lua
19 #if !defined(LUA_USE_CTYPE)
21 #if 'A' == 65 && '0' == 48
22 /* ASCII case: can use its own tables; faster and fixed */
23 #define LUA_USE_CTYPE 0
24 #else
25 /* must use standard C ctype */
26 #define LUA_USE_CTYPE 1
27 #endif
29 #endif
32 #if !LUA_USE_CTYPE /* { */
34 #include <limits.h>
36 #include "llimits.h"
39 #define ALPHABIT 0
40 #define DIGITBIT 1
41 #define PRINTBIT 2
42 #define SPACEBIT 3
43 #define XDIGITBIT 4
46 #define MASK(B) (1 << (B))
50 ** add 1 to char to allow index -1 (EOZ)
52 #define testprop(c,p) (luai_ctype_[(c)+1] & (p))
55 ** 'lalpha' (Lua alphabetic) and 'lalnum' (Lua alphanumeric) both include '_'
57 /*all utf-8 chars are always alphabetic character (everthing higher then
58 2^7 is always a valid char), end of stream (-1) is not valid */
59 #define lislalpha(c) (( (isalpha(c) || ((c) == '_')) || (0x80&c)) && c!=-1)
60 /*all utf-8 chars are always alphabetic character or numbers, end of
61 stream (-1) is not valid*/
62 #define lislalnum(c) (( (isalnum(c) || ((c) == '_')) || (0x80&c)) && c!=-1)
63 #define lisdigit(c) testprop(c, MASK(DIGITBIT))
64 #define lisspace(c) testprop(c, MASK(SPACEBIT))
65 #define lisprint(c) testprop(c, MASK(PRINTBIT))
66 #define lisxdigit(c) testprop(c, MASK(XDIGITBIT))
69 ** this 'ltolower' only works for alphabetic characters
71 #define ltolower(c) ((c) | ('A' ^ 'a'))
74 /* two more entries for 0 and -1 (EOZ) */
75 LUAI_DDEC const lu_byte luai_ctype_[UCHAR_MAX + 2];
78 #else /* }{ */
81 ** use standard C ctypes
84 #include <ctype.h>
87 #define lislalpha(c) (isalpha(c) || (c) == '_')
88 #define lislalnum(c) (isalnum(c) || (c) == '_')
89 #define lisdigit(c) (isdigit(c))
90 #define lisspace(c) (isspace(c))
91 #define lisprint(c) (isprint(c))
92 #define lisxdigit(c) (isxdigit(c))
94 #define ltolower(c) (tolower(c))
96 #endif /* } */
98 #endif