diff options
author | Expat Upstream <kwrobot@kitware.com> | 2016-05-01 14:01:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-05 18:42:29 (GMT) |
commit | 318b1c17a96a2e1e93bc8a457e98770e829ea02c (patch) | |
tree | 05024ece9b29ece8dfc3647cb93b765e83a7cca2 /lib/xmltok_impl.h | |
download | CMake-318b1c17a96a2e1e93bc8a457e98770e829ea02c.zip CMake-318b1c17a96a2e1e93bc8a457e98770e829ea02c.tar.gz CMake-318b1c17a96a2e1e93bc8a457e98770e829ea02c.tar.bz2 |
expat 2016-05-01 (379213ca)
Code extracted from:
http://git.code.sf.net/p/expat/code_git
at commit 379213ca196f82d19ae72195c4a9bec0553d0bb2 (master).
Diffstat (limited to 'lib/xmltok_impl.h')
-rw-r--r-- | lib/xmltok_impl.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/xmltok_impl.h b/lib/xmltok_impl.h new file mode 100644 index 0000000..da0ea60 --- /dev/null +++ b/lib/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> |