22 lines
418 B
C
22 lines
418 B
C
#ifndef BISON_DOMNODE_XML_PARSER_H
|
|
# define BISON_DOMNODE_XML_PARSER_H
|
|
|
|
#ifndef YYSTYPE
|
|
typedef union { char *s; } yystype;
|
|
# define YYSTYPE yystype
|
|
# define YYSTYPE_IS_TRIVIAL 1
|
|
#endif
|
|
# define ENDDEF 257
|
|
# define EQ 258
|
|
# define SLASH 259
|
|
# define CLOSE 260
|
|
# define END 261
|
|
# define NAME 262
|
|
# define VALUE 263
|
|
# define DATA 264
|
|
# define COMMENT 265
|
|
# define START 266
|
|
|
|
|
|
#endif /* not BISON_DOMNODE_XML_PARSER_H */
|