File: css_tokenizer.h

package info (click to toggle)
wget2 2.2.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 22,248 kB
  • sloc: ansic: 121,144; sh: 11,559; makefile: 878; xml: 182; sed: 16
file content (58 lines) | stat: -rw-r--r-- 1,346 bytes parent folder | download | duplicates (5)
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
48
49
50
51
52
53
54
55
56
57
58
/*
 * This file is part of libwget.
 *
 * Libwget is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Libwget is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with libwget.  If not, see <https://www.gnu.org/licenses/>.
 *
 * Changelog
 * 16.07.2012  Tim Ruehsen  created
 *
 */

#ifndef LIBWGET_CSS_TOKENIZER_H
# define LIBWGET_CSS_TOKENIZER_H

enum {
  CSSEOF = 0,
  S = 1,
  CDO = 2,
  CDC = 3,
  INCLUDES = 4,
  DASHMATCH = 5,
  STRING = 6,
  BAD_STRING = 7,
  IDENT = 8,
  HASH = 9,
  IMPORT_SYM = 10,
  PAGE_SYM = 11,
  MEDIA_SYM = 12,
  CHARSET_SYM = 13,
  IMPORTANT_SYM = 14,
  EMS = 15,
  EXS = 16,
  LENGTH = 17,
  ANGLE = 18,
  TIME = 19,
  FREQ = 20,
  DIMENSION = 21,
  PERCENTAGE = 22,
  NUMBER = 23,
  URI = 24,
  BAD_URI = 25,
  FUNCTION = 26,
  COMMENT = 27
};

# define YY_FATAL_ERROR(msg) wget_error_printf_exit(msg)

#endif /* LIBWGET_CSS_TOKENIZER_H */