parser/expat/lib/xmltok_impl.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /*
michael@0 2 Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd
michael@0 3 See the file COPYING for copying permission.
michael@0 4 */
michael@0 5
michael@0 6 enum {
michael@0 7 BT_NONXML,
michael@0 8 BT_MALFORM,
michael@0 9 BT_LT,
michael@0 10 BT_AMP,
michael@0 11 BT_RSQB,
michael@0 12 BT_LEAD2,
michael@0 13 BT_LEAD3,
michael@0 14 BT_LEAD4,
michael@0 15 BT_TRAIL,
michael@0 16 BT_CR,
michael@0 17 BT_LF,
michael@0 18 BT_GT,
michael@0 19 BT_QUOT,
michael@0 20 BT_APOS,
michael@0 21 BT_EQUALS,
michael@0 22 BT_QUEST,
michael@0 23 BT_EXCL,
michael@0 24 BT_SOL,
michael@0 25 BT_SEMI,
michael@0 26 BT_NUM,
michael@0 27 BT_LSQB,
michael@0 28 BT_S,
michael@0 29 BT_NMSTRT,
michael@0 30 BT_COLON,
michael@0 31 BT_HEX,
michael@0 32 BT_DIGIT,
michael@0 33 BT_NAME,
michael@0 34 BT_MINUS,
michael@0 35 BT_OTHER, /* known not to be a name or name start character */
michael@0 36 BT_NONASCII, /* might be a name or name start character */
michael@0 37 BT_PERCNT,
michael@0 38 BT_LPAR,
michael@0 39 BT_RPAR,
michael@0 40 BT_AST,
michael@0 41 BT_PLUS,
michael@0 42 BT_COMMA,
michael@0 43 BT_VERBAR
michael@0 44 };
michael@0 45
michael@0 46 #include <stddef.h>

mercurial