File: css_syntax.h

package info (click to toggle)
htmlcxx 0.87-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,412 kB
  • sloc: sh: 4,380; cpp: 4,355; yacc: 526; ansic: 205; lex: 159; makefile: 47; perl: 27
file content (47 lines) | stat: -rw-r--r-- 1,065 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef BISON_CSS_SYNTAX_H
# define BISON_CSS_SYNTAX_H

#ifndef YYSTYPE
typedef union {
	char *lexeme;
	char letter;
	struct property_t *property;
	struct selector_t *selector;
	struct selector_list_t *selector_list;
	int pseudo_class;
	int pseudo_element;
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define	IMPORT_SYM	257
# define	IMPORTANT_SYM	258
# define	IDENT	259
# define	STRING	260
# define	NUMBER	261
# define	PERCENTAGE	262
# define	LENGTH	263
# define	EMS	264
# define	EXS	265
# define	LINK_PSCLASS_AFTER_IDENT	266
# define	VISITED_PSCLASS_AFTER_IDENT	267
# define	ACTIVE_PSCLASS_AFTER_IDENT	268
# define	FIRST_LINE_AFTER_IDENT	269
# define	FIRST_LETTER_AFTER_IDENT	270
# define	HASH_AFTER_IDENT	271
# define	CLASS_AFTER_IDENT	272
# define	LINK_PSCLASS	273
# define	VISITED_PSCLASS	274
# define	ACTIVE_PSCLASS	275
# define	FIRST_LINE	276
# define	FIRST_LETTER	277
# define	HASH	278
# define	CLASS	279
# define	URL	280
# define	RGB	281
# define	CDO	282
# define	CDC	283
# define	CSL	284


#endif /* not BISON_CSS_SYNTAX_H */