summaryrefslogtreecommitdiff
path: root/ext/ereg/regex/cclass.h
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2007-07-15 19:43:06 +0000
committerJani Taskinen <jani@php.net>2007-07-15 19:43:06 +0000
commitc77bcba737bb46bd022b1816f4c3162c30e3598f (patch)
treec85234d0be0fb8d14caf696128db8b4aed6150be /ext/ereg/regex/cclass.h
parentcc7342ef726b4bd5420e176b930ce94fe998de51 (diff)
downloadphp-git-c77bcba737bb46bd022b1816f4c3162c30e3598f.tar.gz
- Remove ereg/ from PHP_5_2 branch. (not yet wanted here :)
Diffstat (limited to 'ext/ereg/regex/cclass.h')
-rw-r--r--ext/ereg/regex/cclass.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/ext/ereg/regex/cclass.h b/ext/ereg/regex/cclass.h
deleted file mode 100644
index df41694b04..0000000000
--- a/ext/ereg/regex/cclass.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* character-class table */
-static struct cclass {
- unsigned char *name;
- unsigned char *chars;
- 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, ""}
-};