1 /*
2 The contents of this file are subject to the Mozilla Public License
3 Version 1.0 (the "License"); you may not use this file except in
4 compliance with the License. You may obtain a copy of the License at
5 http://www.mozilla.org/MPL/
6 
7 Software distributed under the License is distributed on an "AS IS"
8 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
9 License for the specific language governing rights and limitations
10 under the License.
11 
12 The Original Code is expat.
13 
14 The Initial Developer of the Original Code is James Clark.
15 Portions created by James Clark are Copyright (C) 1998
16 James Clark. All Rights Reserved.
17 
18 Contributor(s):
19 $Id: xmltok_impl.h,v 1.1.1.1 2001/06/24 18:30:00 torcs Exp $
20 */
21 
22 enum {
23   BT_NONXML,
24   BT_MALFORM,
25   BT_LT,
26   BT_AMP,
27   BT_RSQB,
28   BT_LEAD2,
29   BT_LEAD3,
30   BT_LEAD4,
31   BT_TRAIL,
32   BT_CR,
33   BT_LF,
34   BT_GT,
35   BT_QUOT,
36   BT_APOS,
37   BT_EQUALS,
38   BT_QUEST,
39   BT_EXCL,
40   BT_SOL,
41   BT_SEMI,
42   BT_NUM,
43   BT_LSQB,
44   BT_S,
45   BT_NMSTRT,
46   BT_HEX,
47   BT_DIGIT,
48   BT_NAME,
49   BT_MINUS,
50   BT_OTHER, /* known not to be a name or name start character */
51   BT_NONASCII, /* might be a name or name start character */
52   BT_PERCNT,
53   BT_LPAR,
54   BT_RPAR,
55   BT_AST,
56   BT_PLUS,
57   BT_COMMA,
58   BT_VERBAR
59 };
60 
61 #include <stddef.h>
62