The Battle for Wesnoth  1.13.4+dev
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
lctype.cpp
Go to the documentation of this file.
1 /*
2 ** 'ctype' functions for Lua
3 ** See Copyright Notice in lua.h
4 */
5 
6 #define lctype_c
7 #define LUA_CORE
8 
9 #include "lctype.h"
10 
11 #if !LUA_USE_CTYPE /* { */
12 
13 #include <limits.h>
14 
15 LUAI_DDEF const lu_byte luai_ctype_[UCHAR_MAX + 2] = {
16  0x00, /* EOZ */
17  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 0. */
18  0x00, 0x08, 0x08, 0x08, 0x08, 0x08, 0x00, 0x00,
19  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 1. */
20  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
21  0x0c, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, /* 2. */
22  0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
23  0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, 0x16, /* 3. */
24  0x16, 0x16, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04,
25  0x04, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x05, /* 4. */
26  0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
27  0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, /* 5. */
28  0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x05,
29  0x04, 0x15, 0x15, 0x15, 0x15, 0x15, 0x15, 0x05, /* 6. */
30  0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05,
31  0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, 0x05, /* 7. */
32  0x05, 0x05, 0x05, 0x04, 0x04, 0x04, 0x04, 0x00,
33  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 8. */
34  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
35  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* 9. */
36  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
37  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* a. */
38  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
39  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* b. */
40  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
41  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* c. */
42  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
43  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* d. */
44  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
45  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* e. */
46  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
47  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /* f. */
48  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
49 };
50 
51 #endif /* } */
unsigned char lu_byte
Definition: llimits.h:26
#define LUAI_DDEF
Definition: luaconf.h:189