]> git.cworth.org Git - vogl/blob - src/voglcore/regex/cclass.h
Initial vogl checkin
[vogl] / src / voglcore / regex / cclass.h
1 /**************************************************************************
2  *
3  * Copyright 2013-2014 RAD Game Tools and Valve Software
4  * Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
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, sublicense, and/or sell
11  * copies of the Software, and to permit persons to whom the Software is
12  * furnished to do so, subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in
15  * all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23  * THE SOFTWARE.
24  *
25  **************************************************************************/
26
27 /* character-class table */
28 static struct cclass
29 {
30     char *name;
31     char *chars;
32     char *multis;
33 } cclasses[] =
34       {
35           { "alnum", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\
36 0123456789",
37             "" },
38           { "alpha", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
39             "" },
40           { "blank", " \t", "" },
41           { "cntrl", "\007\b\t\n\v\f\r\1\2\3\4\5\6\16\17\20\21\22\23\24\
42 \25\26\27\30\31\32\33\34\35\36\37\177",
43             "" },
44           { "digit", "0123456789", "" },
45           { "graph", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\
46 0123456789!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
47             "" },
48           { "lower", "abcdefghijklmnopqrstuvwxyz",
49             "" },
50           { "print", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\
51 0123456789!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ ",
52             "" },
53           { "punct", "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
54             "" },
55           { "space", "\t\n\v\f\r ", "" },
56           { "upper", "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
57             "" },
58           { "xdigit", "0123456789ABCDEFabcdef",
59             "" },
60           { NULL, 0, "" }
61       };