diff options
author | madmaxoft <madmaxoft@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-09 15:43:24 +0200 |
---|---|---|
committer | madmaxoft <madmaxoft@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-09 15:43:24 +0200 |
commit | 48cec90c3f1e81daec3d216ddf4db1ea1e2a8341 (patch) | |
tree | bd9c59149da9eec5e22e7bbbb9fe0de6352fee8d /expat/xmltok_impl.h | |
parent | Removed an unneeded FTP command template file. ncftp supports everything on the commandline. (diff) | |
download | cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.gz cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.bz2 cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.lz cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.xz cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.tar.zst cuberite-48cec90c3f1e81daec3d216ddf4db1ea1e2a8341.zip |
Diffstat (limited to 'expat/xmltok_impl.h')
-rw-r--r-- | expat/xmltok_impl.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/expat/xmltok_impl.h b/expat/xmltok_impl.h new file mode 100644 index 000000000..da0ea60a6 --- /dev/null +++ b/expat/xmltok_impl.h @@ -0,0 +1,46 @@ +/* +Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd +See the file COPYING for copying permission. +*/ + +enum { + BT_NONXML, + BT_MALFORM, + BT_LT, + BT_AMP, + BT_RSQB, + BT_LEAD2, + BT_LEAD3, + BT_LEAD4, + BT_TRAIL, + BT_CR, + BT_LF, + BT_GT, + BT_QUOT, + BT_APOS, + BT_EQUALS, + BT_QUEST, + BT_EXCL, + BT_SOL, + BT_SEMI, + BT_NUM, + BT_LSQB, + BT_S, + BT_NMSTRT, + BT_COLON, + BT_HEX, + BT_DIGIT, + BT_NAME, + BT_MINUS, + BT_OTHER, /* known not to be a name or name start character */ + BT_NONASCII, /* might be a name or name start character */ + BT_PERCNT, + BT_LPAR, + BT_RPAR, + BT_AST, + BT_PLUS, + BT_COMMA, + BT_VERBAR +}; + +#include <stddef.h> |