ucl 0.1.3.2 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/LICENSE-DEPENDENCIES.md +161 -0
- data/README.md +270 -0
- data/ext/extconf.rb +67 -3
- data/ext/libucl/COPYING +23 -0
- data/ext/libucl/include/ucl.h +1689 -0
- data/ext/libucl/klib/khash.h +627 -0
- data/ext/libucl/klib/kvec.h +161 -0
- data/ext/libucl/src/mum.h +440 -0
- data/ext/libucl/src/tree.h +209 -0
- data/ext/libucl/src/ucl_chartable.h +267 -0
- data/ext/libucl/src/ucl_emitter.c +721 -0
- data/ext/libucl/src/ucl_emitter_streamline.c +178 -0
- data/ext/libucl/src/ucl_emitter_utils.c +521 -0
- data/ext/libucl/src/ucl_hash.c +642 -0
- data/ext/libucl/src/ucl_hash.h +115 -0
- data/ext/libucl/src/ucl_internal.h +668 -0
- data/ext/libucl/src/ucl_msgpack.c +1574 -0
- data/ext/libucl/src/ucl_parser.c +3247 -0
- data/ext/libucl/src/ucl_schema.c +1102 -0
- data/ext/libucl/src/ucl_sexp.c +229 -0
- data/ext/libucl/src/ucl_util.c +4004 -0
- data/ext/libucl/uthash/uthash.h +720 -0
- data/ext/libucl/uthash/utlist.h +1076 -0
- data/ext/libucl/uthash/utstring.h +412 -0
- data/ext/ucl.c +398 -90
- data/test/test_ucl.rb +452 -0
- data/ucl.gemspec +30 -7
- metadata +77 -14
|
@@ -0,0 +1,209 @@
|
|
|
1
|
+
/* tree.h -- AVL trees (in the spirit of BSD's 'queue.h') -*- C -*- */
|
|
2
|
+
|
|
3
|
+
/* Copyright (c) 2005 Ian Piumarta
|
|
4
|
+
*
|
|
5
|
+
* All rights reserved.
|
|
6
|
+
*
|
|
7
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
8
|
+
* of this software and associated documentation files (the 'Software'), to deal
|
|
9
|
+
* in the Software without restriction, including without limitation the rights
|
|
10
|
+
* to use, copy, modify, merge, publish, distribute, and/or sell copies of the
|
|
11
|
+
* Software, and to permit persons to whom the Software is furnished to do so,
|
|
12
|
+
* provided that the above copyright notice(s) and this permission notice appear
|
|
13
|
+
* in all copies of the Software and that both the above copyright notice(s) and
|
|
14
|
+
* this permission notice appear in supporting documentation.
|
|
15
|
+
*
|
|
16
|
+
* THE SOFTWARE IS PROVIDED 'AS IS'. USE ENTIRELY AT YOUR OWN RISK.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/* This file defines an AVL balanced binary tree [Georgii M. Adelson-Velskii and
|
|
20
|
+
* Evgenii M. Landis, 'An algorithm for the organization of information',
|
|
21
|
+
* Doklady Akademii Nauk SSSR, 146:263-266, 1962 (Russian). Also in Myron
|
|
22
|
+
* J. Ricci (trans.), Soviet Math, 3:1259-1263, 1962 (English)].
|
|
23
|
+
*
|
|
24
|
+
* An AVL tree is headed by pointers to the root node and to a function defining
|
|
25
|
+
* the ordering relation between nodes. Each node contains an arbitrary payload
|
|
26
|
+
* plus three fields per tree entry: the depth of the subtree for which it forms
|
|
27
|
+
* the root and two pointers to child nodes (singly-linked for minimum space, at
|
|
28
|
+
* the expense of direct access to the parent node given a pointer to one of the
|
|
29
|
+
* children). The tree is rebalanced after every insertion or removal. The
|
|
30
|
+
* tree may be traversed in two directions: forward (in-order left-to-right) and
|
|
31
|
+
* reverse (in-order, right-to-left).
|
|
32
|
+
*
|
|
33
|
+
* Because of the recursive nature of many of the operations on trees it is
|
|
34
|
+
* necessary to define a number of helper functions for each type of tree node.
|
|
35
|
+
* The macro TREE_DEFINE(node_tag, entry_name) defines these functions with
|
|
36
|
+
* unique names according to the node_tag. This macro should be invoked,
|
|
37
|
+
* thereby defining the necessary functions, once per node tag in the program.
|
|
38
|
+
*
|
|
39
|
+
* For details on the use of these macros, see the tree(3) manual page.
|
|
40
|
+
*/
|
|
41
|
+
|
|
42
|
+
#ifndef __tree_h
|
|
43
|
+
#define __tree_h
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
#define TREE_DELTA_MAX 1
|
|
47
|
+
#ifndef _HU_FUNCTION
|
|
48
|
+
#if defined(__GNUC__) || defined(__clang__)
|
|
49
|
+
#define _HU_FUNCTION(x) __attribute__((__unused__)) x
|
|
50
|
+
#else
|
|
51
|
+
#define _HU_FUNCTION(x) x
|
|
52
|
+
#endif
|
|
53
|
+
#endif
|
|
54
|
+
|
|
55
|
+
#define TREE_ENTRY(type) \
|
|
56
|
+
struct { \
|
|
57
|
+
struct type *avl_left; \
|
|
58
|
+
struct type *avl_right; \
|
|
59
|
+
int avl_height; \
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
#define TREE_HEAD(name, type) \
|
|
63
|
+
struct name { \
|
|
64
|
+
struct type *th_root; \
|
|
65
|
+
int (*th_cmp)(struct type * lhs, struct type *rhs); \
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
#define TREE_INITIALIZER(cmp) {0, cmp}
|
|
69
|
+
|
|
70
|
+
#define TREE_DELTA(self, field) \
|
|
71
|
+
(((((self)->field.avl_left) ? (self)->field.avl_left->field.avl_height : 0)) - (((self)->field.avl_right) ? (self)->field.avl_right->field.avl_height : 0))
|
|
72
|
+
|
|
73
|
+
/* Recursion prevents the following from being defined as macros. */
|
|
74
|
+
|
|
75
|
+
#define TREE_DEFINE(node, field) \
|
|
76
|
+
\
|
|
77
|
+
static struct node *_HU_FUNCTION(TREE_BALANCE_##node##_##field)(struct node *); \
|
|
78
|
+
\
|
|
79
|
+
static struct node *_HU_FUNCTION(TREE_ROTL_##node##_##field)(struct node * self) \
|
|
80
|
+
{ \
|
|
81
|
+
struct node *r = self->field.avl_right; \
|
|
82
|
+
self->field.avl_right = r->field.avl_left; \
|
|
83
|
+
r->field.avl_left = TREE_BALANCE_##node##_##field(self); \
|
|
84
|
+
return TREE_BALANCE_##node##_##field(r); \
|
|
85
|
+
} \
|
|
86
|
+
\
|
|
87
|
+
static struct node *_HU_FUNCTION(TREE_ROTR_##node##_##field)(struct node * self) \
|
|
88
|
+
{ \
|
|
89
|
+
struct node *l = self->field.avl_left; \
|
|
90
|
+
self->field.avl_left = l->field.avl_right; \
|
|
91
|
+
l->field.avl_right = TREE_BALANCE_##node##_##field(self); \
|
|
92
|
+
return TREE_BALANCE_##node##_##field(l); \
|
|
93
|
+
} \
|
|
94
|
+
\
|
|
95
|
+
static struct node *_HU_FUNCTION(TREE_BALANCE_##node##_##field)(struct node * self) \
|
|
96
|
+
{ \
|
|
97
|
+
int delta = TREE_DELTA(self, field); \
|
|
98
|
+
\
|
|
99
|
+
if (delta < -TREE_DELTA_MAX) { \
|
|
100
|
+
if (TREE_DELTA(self->field.avl_right, field) > 0) \
|
|
101
|
+
self->field.avl_right = TREE_ROTR_##node##_##field(self->field.avl_right); \
|
|
102
|
+
return TREE_ROTL_##node##_##field(self); \
|
|
103
|
+
} \
|
|
104
|
+
else if (delta > TREE_DELTA_MAX) { \
|
|
105
|
+
if (TREE_DELTA(self->field.avl_left, field) < 0) \
|
|
106
|
+
self->field.avl_left = TREE_ROTL_##node##_##field(self->field.avl_left); \
|
|
107
|
+
return TREE_ROTR_##node##_##field(self); \
|
|
108
|
+
} \
|
|
109
|
+
self->field.avl_height = 0; \
|
|
110
|
+
if (self->field.avl_left && (self->field.avl_left->field.avl_height > self->field.avl_height)) \
|
|
111
|
+
self->field.avl_height = self->field.avl_left->field.avl_height; \
|
|
112
|
+
if (self->field.avl_right && (self->field.avl_right->field.avl_height > self->field.avl_height)) \
|
|
113
|
+
self->field.avl_height = self->field.avl_right->field.avl_height; \
|
|
114
|
+
self->field.avl_height += 1; \
|
|
115
|
+
return self; \
|
|
116
|
+
} \
|
|
117
|
+
\
|
|
118
|
+
static struct node *_HU_FUNCTION(TREE_INSERT_##node##_##field)(struct node * self, struct node * elm, int (*compare)(struct node * lhs, struct node * rhs)) \
|
|
119
|
+
{ \
|
|
120
|
+
if (!self) \
|
|
121
|
+
return elm; \
|
|
122
|
+
if (compare(elm, self) < 0) \
|
|
123
|
+
self->field.avl_left = TREE_INSERT_##node##_##field(self->field.avl_left, elm, compare); \
|
|
124
|
+
else \
|
|
125
|
+
self->field.avl_right = TREE_INSERT_##node##_##field(self->field.avl_right, elm, compare); \
|
|
126
|
+
return TREE_BALANCE_##node##_##field(self); \
|
|
127
|
+
} \
|
|
128
|
+
\
|
|
129
|
+
static struct node *_HU_FUNCTION(TREE_FIND_##node##_##field)(struct node * self, struct node * elm, int (*compare)(struct node * lhs, struct node * rhs)) \
|
|
130
|
+
{ \
|
|
131
|
+
if (!self) \
|
|
132
|
+
return 0; \
|
|
133
|
+
if (compare(elm, self) == 0) \
|
|
134
|
+
return self; \
|
|
135
|
+
if (compare(elm, self) < 0) \
|
|
136
|
+
return TREE_FIND_##node##_##field(self->field.avl_left, elm, compare); \
|
|
137
|
+
else \
|
|
138
|
+
return TREE_FIND_##node##_##field(self->field.avl_right, elm, compare); \
|
|
139
|
+
} \
|
|
140
|
+
\
|
|
141
|
+
static struct node *_HU_FUNCTION(TREE_MOVE_RIGHT)(struct node * self, struct node * rhs) \
|
|
142
|
+
{ \
|
|
143
|
+
if (!self) \
|
|
144
|
+
return rhs; \
|
|
145
|
+
self->field.avl_right = TREE_MOVE_RIGHT(self->field.avl_right, rhs); \
|
|
146
|
+
return TREE_BALANCE_##node##_##field(self); \
|
|
147
|
+
} \
|
|
148
|
+
\
|
|
149
|
+
static struct node *_HU_FUNCTION(TREE_REMOVE_##node##_##field)(struct node * self, struct node * elm, int (*compare)(struct node * lhs, struct node * rhs)) \
|
|
150
|
+
{ \
|
|
151
|
+
if (!self) return 0; \
|
|
152
|
+
\
|
|
153
|
+
if (compare(elm, self) == 0) { \
|
|
154
|
+
struct node *tmp = TREE_MOVE_RIGHT(self->field.avl_left, self->field.avl_right); \
|
|
155
|
+
self->field.avl_left = 0; \
|
|
156
|
+
self->field.avl_right = 0; \
|
|
157
|
+
return tmp; \
|
|
158
|
+
} \
|
|
159
|
+
if (compare(elm, self) < 0) \
|
|
160
|
+
self->field.avl_left = TREE_REMOVE_##node##_##field(self->field.avl_left, elm, compare); \
|
|
161
|
+
else \
|
|
162
|
+
self->field.avl_right = TREE_REMOVE_##node##_##field(self->field.avl_right, elm, compare); \
|
|
163
|
+
return TREE_BALANCE_##node##_##field(self); \
|
|
164
|
+
} \
|
|
165
|
+
\
|
|
166
|
+
static void _HU_FUNCTION(TREE_FORWARD_APPLY_ALL_##node##_##field)(struct node * self, void (*function)(struct node * node, void *data), void *data) \
|
|
167
|
+
{ \
|
|
168
|
+
if (self) { \
|
|
169
|
+
TREE_FORWARD_APPLY_ALL_##node##_##field(self->field.avl_left, function, data); \
|
|
170
|
+
function(self, data); \
|
|
171
|
+
TREE_FORWARD_APPLY_ALL_##node##_##field(self->field.avl_right, function, data); \
|
|
172
|
+
} \
|
|
173
|
+
} \
|
|
174
|
+
\
|
|
175
|
+
static void _HU_FUNCTION(TREE_REVERSE_APPLY_ALL_##node##_##field)(struct node * self, void (*function)(struct node * node, void *data), void *data) \
|
|
176
|
+
{ \
|
|
177
|
+
if (self) { \
|
|
178
|
+
TREE_REVERSE_APPLY_ALL_##node##_##field(self->field.avl_right, function, data); \
|
|
179
|
+
function(self, data); \
|
|
180
|
+
TREE_REVERSE_APPLY_ALL_##node##_##field(self->field.avl_left, function, data); \
|
|
181
|
+
} \
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
#define TREE_INSERT(head, node, field, elm) \
|
|
185
|
+
((head)->th_root = TREE_INSERT_##node##_##field((head)->th_root, (elm), (head)->th_cmp))
|
|
186
|
+
|
|
187
|
+
#define TREE_FIND(head, node, field, elm) \
|
|
188
|
+
(TREE_FIND_##node##_##field((head)->th_root, (elm), (head)->th_cmp))
|
|
189
|
+
|
|
190
|
+
#define TREE_REMOVE(head, node, field, elm) \
|
|
191
|
+
((head)->th_root = TREE_REMOVE_##node##_##field((head)->th_root, (elm), (head)->th_cmp))
|
|
192
|
+
|
|
193
|
+
#define TREE_DEPTH(head, field) \
|
|
194
|
+
((head)->th_root->field.avl_height)
|
|
195
|
+
|
|
196
|
+
#define TREE_FORWARD_APPLY(head, node, field, function, data) \
|
|
197
|
+
TREE_FORWARD_APPLY_ALL_##node##_##field((head)->th_root, function, data)
|
|
198
|
+
|
|
199
|
+
#define TREE_REVERSE_APPLY(head, node, field, function, data) \
|
|
200
|
+
TREE_REVERSE_APPLY_ALL_##node##_##field((head)->th_root, function, data)
|
|
201
|
+
|
|
202
|
+
#define TREE_INIT(head, cmp) \
|
|
203
|
+
do { \
|
|
204
|
+
(head)->th_root = 0; \
|
|
205
|
+
(head)->th_cmp = (cmp); \
|
|
206
|
+
} while (0)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
#endif /* __tree_h */
|
|
@@ -0,0 +1,267 @@
|
|
|
1
|
+
/* Copyright (c) 2013, Vsevolod Stakhov
|
|
2
|
+
* All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Redistribution and use in source and binary forms, with or without
|
|
5
|
+
* modification, are permitted provided that the following conditions are met:
|
|
6
|
+
* * Redistributions of source code must retain the above copyright
|
|
7
|
+
* notice, this list of conditions and the following disclaimer.
|
|
8
|
+
* * Redistributions in binary form must reproduce the above copyright
|
|
9
|
+
* notice, this list of conditions and the following disclaimer in the
|
|
10
|
+
* documentation and/or other materials provided with the distribution.
|
|
11
|
+
*
|
|
12
|
+
* THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
|
|
13
|
+
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
14
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
15
|
+
* DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
|
|
16
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
17
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
18
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
19
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
20
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
21
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
#ifndef UCL_CHARTABLE_H_
|
|
25
|
+
#define UCL_CHARTABLE_H_
|
|
26
|
+
|
|
27
|
+
#include "ucl_internal.h"
|
|
28
|
+
|
|
29
|
+
static const unsigned int ucl_chartable[256] = {
|
|
30
|
+
UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_VALUE_END | UCL_CHARACTER_UCL_UNSAFE, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
31
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
32
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
33
|
+
UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE,
|
|
34
|
+
UCL_CHARACTER_WHITESPACE | UCL_CHARACTER_WHITESPACE_UNSAFE | UCL_CHARACTER_KEY_SEP | UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE,
|
|
35
|
+
UCL_CHARACTER_WHITESPACE_UNSAFE | UCL_CHARACTER_VALUE_END | UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE,
|
|
36
|
+
UCL_CHARACTER_WHITESPACE_UNSAFE,
|
|
37
|
+
UCL_CHARACTER_WHITESPACE_UNSAFE | UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE,
|
|
38
|
+
UCL_CHARACTER_WHITESPACE_UNSAFE | UCL_CHARACTER_VALUE_END | UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE,
|
|
39
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
40
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
41
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
42
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
43
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
44
|
+
UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED, UCL_CHARACTER_DENIED,
|
|
45
|
+
UCL_CHARACTER_WHITESPACE | UCL_CHARACTER_WHITESPACE_UNSAFE | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_KEY_SEP | UCL_CHARACTER_UCL_UNSAFE /* */,
|
|
46
|
+
UCL_CHARACTER_VALUE_STR /* ! */,
|
|
47
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_ESCAPE | UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE /* " */,
|
|
48
|
+
UCL_CHARACTER_VALUE_END /* # */, UCL_CHARACTER_VALUE_STR /* $ */,
|
|
49
|
+
UCL_CHARACTER_VALUE_STR /* % */, UCL_CHARACTER_VALUE_STR /* & */,
|
|
50
|
+
UCL_CHARACTER_VALUE_STR /* ' */, UCL_CHARACTER_VALUE_STR /* ( */,
|
|
51
|
+
UCL_CHARACTER_VALUE_STR /* ) */, UCL_CHARACTER_VALUE_STR /* * */,
|
|
52
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_UCL_UNSAFE /* + */,
|
|
53
|
+
UCL_CHARACTER_VALUE_END /* , */,
|
|
54
|
+
UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* - */,
|
|
55
|
+
UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* . */,
|
|
56
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_ESCAPE /* / */,
|
|
57
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 0 */,
|
|
58
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 1 */,
|
|
59
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 2 */,
|
|
60
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 3 */,
|
|
61
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 4 */,
|
|
62
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 5 */,
|
|
63
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 6 */,
|
|
64
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 7 */,
|
|
65
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 8 */,
|
|
66
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT_START | UCL_CHARACTER_VALUE_DIGIT /* 9 */,
|
|
67
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_KEY_SEP | UCL_CHARACTER_UCL_UNSAFE /* : */,
|
|
68
|
+
UCL_CHARACTER_VALUE_END /* ; */, UCL_CHARACTER_VALUE_STR /* < */,
|
|
69
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_KEY_SEP | UCL_CHARACTER_UCL_UNSAFE /* = */,
|
|
70
|
+
UCL_CHARACTER_VALUE_STR /* > */, UCL_CHARACTER_VALUE_STR /* ? */,
|
|
71
|
+
UCL_CHARACTER_VALUE_STR /* @ */,
|
|
72
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* A */,
|
|
73
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* B */,
|
|
74
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* C */,
|
|
75
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* D */,
|
|
76
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* E */,
|
|
77
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* F */,
|
|
78
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* G */,
|
|
79
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* H */,
|
|
80
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* I */,
|
|
81
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* J */,
|
|
82
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* K */,
|
|
83
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* L */,
|
|
84
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* M */,
|
|
85
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* N */,
|
|
86
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* O */,
|
|
87
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* P */,
|
|
88
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* Q */,
|
|
89
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* R */,
|
|
90
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* S */,
|
|
91
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* T */,
|
|
92
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* U */,
|
|
93
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* V */,
|
|
94
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* W */,
|
|
95
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* X */,
|
|
96
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* Y */,
|
|
97
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* Z */,
|
|
98
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_UCL_UNSAFE /* [ */,
|
|
99
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_ESCAPE | UCL_CHARACTER_JSON_UNSAFE | UCL_CHARACTER_UCL_UNSAFE /* \ */,
|
|
100
|
+
UCL_CHARACTER_VALUE_END /* ] */, UCL_CHARACTER_VALUE_STR /* ^ */,
|
|
101
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR /* _ */,
|
|
102
|
+
UCL_CHARACTER_VALUE_STR /* ` */,
|
|
103
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* a */,
|
|
104
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_ESCAPE /* b */,
|
|
105
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* c */,
|
|
106
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* d */,
|
|
107
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* e */,
|
|
108
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_ESCAPE /* f */,
|
|
109
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* g */,
|
|
110
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* h */,
|
|
111
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* i */,
|
|
112
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* j */,
|
|
113
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* k */,
|
|
114
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* l */,
|
|
115
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* m */,
|
|
116
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_ESCAPE /* n */,
|
|
117
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* o */,
|
|
118
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* p */,
|
|
119
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* q */,
|
|
120
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_ESCAPE /* r */,
|
|
121
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* s */,
|
|
122
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_ESCAPE /* t */,
|
|
123
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT | UCL_CHARACTER_ESCAPE /* u */,
|
|
124
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* v */,
|
|
125
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* w */,
|
|
126
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* x */,
|
|
127
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* y */,
|
|
128
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_VALUE_DIGIT /* z */,
|
|
129
|
+
UCL_CHARACTER_VALUE_STR | UCL_CHARACTER_UCL_UNSAFE /* { */,
|
|
130
|
+
UCL_CHARACTER_VALUE_STR /* | */, UCL_CHARACTER_VALUE_END /* } */,
|
|
131
|
+
UCL_CHARACTER_VALUE_STR /* ~ */, UCL_CHARACTER_DENIED,
|
|
132
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
133
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
134
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
135
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
136
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
137
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
138
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
139
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
140
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
141
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
142
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
143
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
144
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
145
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
146
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
147
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
148
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
149
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
150
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
151
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
152
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
153
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
154
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
155
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
156
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
157
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
158
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
159
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
160
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
161
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
162
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
163
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
164
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
165
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
166
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
167
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
168
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
169
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
170
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
171
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
172
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
173
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
174
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
175
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
176
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
177
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
178
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
179
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
180
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
181
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
182
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
183
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
184
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
185
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
186
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
187
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
188
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
189
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
190
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
191
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
192
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
193
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
194
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
195
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
196
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
197
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
198
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
199
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
200
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
201
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
202
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
203
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
204
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
205
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
206
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
207
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
208
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
209
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
210
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
211
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
212
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
213
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
214
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
215
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
216
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
217
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
218
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
219
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
220
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
221
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
222
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
223
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
224
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
225
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
226
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
227
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
228
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
229
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
230
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
231
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
232
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
233
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
234
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
235
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
236
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
237
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
238
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
239
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
240
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
241
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
242
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
243
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
244
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
245
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
246
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
247
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
248
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
249
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
250
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
251
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
252
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
253
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
254
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
255
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
256
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
257
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
258
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR,
|
|
259
|
+
UCL_CHARACTER_KEY_START | UCL_CHARACTER_KEY | UCL_CHARACTER_VALUE_STR};
|
|
260
|
+
|
|
261
|
+
static inline bool
|
|
262
|
+
ucl_test_character(unsigned char c, int type_flags)
|
|
263
|
+
{
|
|
264
|
+
return (ucl_chartable[c] & type_flags) != 0;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
#endif /* UCL_CHARTABLE_H_ */
|