/* character-class table */ static const struct cclass { const unsigned char *name; const unsigned char *chars; const unsigned char *multis; } cclasses[] = { {"alnum", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", ""}, {"alpha", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz", ""}, {"blank", " \t", ""}, {"cntrl", "\007\b\t\n\v\f\r\1\2\3\4\5\6\16\17\20\21\22\23\24\ \25\26\27\30\31\32\33\34\35\36\37\177", ""}, {"digit", "0123456789", ""}, {"graph", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\ 0123456789!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", ""}, {"lower", "abcdefghijklmnopqrstuvwxyz", ""}, {"print", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\ 0123456789!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ ", ""}, {"punct", "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", ""}, {"space", "\t\n\v\f\r ", ""}, {"upper", "ABCDEFGHIJKLMNOPQRSTUVWXYZ", ""}, {"xdigit", "0123456789ABCDEFabcdef", ""}, {NULL, 0, ""} };
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
cclass.h | File | 992 B | 0644 |
|
cname.h | File | 2.02 KB | 0644 |
|
engine.c | File | 25.61 KB | 0644 |
|
regcomp.c | File | 37.19 KB | 0644 |
|
regerror.c | File | 3.32 KB | 0644 |
|
regex.h | File | 2.11 KB | 0644 |
|
regex2.h | File | 5.41 KB | 0644 |
|
regexec.c | File | 4.2 KB | 0644 |
|
regfree.c | File | 738 B | 0644 |
|
utils.h | File | 501 B | 0644 |
|