summaryrefslogtreecommitdiff
path: root/src/parse/parse.h
blob: d4ae3c4837c744c5fbd0f02542a3abefcd1d9b2f (plain)
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
/*
 * This file is part of LibCSS.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2008 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef css_parse_parse_h_
#define css_parse_parse_h_

#include <libcss/functypes.h>
#include <libcss/types.h>

typedef struct css_parser css_parser;

/**
 * Parser option types
 */
typedef enum css_parser_opttype {
	CSS_PARSER_QUIRKS,
} css_parser_opttype;

/**
 * Parser option parameters
 */
typedef union css_parser_optparams {
	bool quirks;
} css_parser_optparams;

css_parser *css_parser_create(css_stylesheet *sheet, const char *charset,
		css_charset_source cs_source, css_alloc alloc, void *pw);
void css_parser_destroy(css_parser *parser);

css_error css_parser_setopt(css_parser *parser, css_parser_opttype type,
		css_parser_optparams *params);

css_error css_parser_parse_chunk(css_parser *parser, const uint8_t *data, 
		size_t len);
css_error css_parser_completed(css_parser *parser);

const char *css_parser_read_charset(css_parser *parser, 
		css_charset_source *source);

#endif