diff options
author | SVN Migration <svn@php.net> | 2002-10-12 14:20:33 +0000 |
---|---|---|
committer | SVN Migration <svn@php.net> | 2002-10-12 14:20:33 +0000 |
commit | faa91c556864bf06779a0bb05bbf97ad72a034fb (patch) | |
tree | f2b77f482eb07af38f786e126f967818f1d669c5 /ext/ereg/regex/cclass.h | |
parent | c93ff0fa6ffa231d4dc97d0766649f6f8038f32f (diff) | |
download | php-git-RELEASE_1_0b1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'RELEASE_1_0b1'.RELEASE_1_0b1
Diffstat (limited to 'ext/ereg/regex/cclass.h')
-rw-r--r-- | ext/ereg/regex/cclass.h | 30 |
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 6227f810b7..0000000000 --- a/ext/ereg/regex/cclass.h +++ /dev/null @@ -1,30 +0,0 @@ -/* character-class table */ -static struct cclass { - char *name; - char *chars; - 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, ""} -}; |