summaryrefslogtreecommitdiff
path: root/src/parse/css21.h
blob: c1b1fdab0c704481d2788350bee220dd9e9334b1 (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
/*
 * 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_css21_h_
#define css_parse_css21_h_

#include <parserutils/utils/vector.h>

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

#include "parse/parse.h"

typedef struct css_css21 css_css21;

css_css21 *css_css21_create(css_stylesheet *sheet, css_parser *parser,
		css_alloc alloc, void *pw);
void css_css21_destroy(css_css21 *css21);

#endif