summaryrefslogtreecommitdiff
path: root/src/parse/important.h
blob: 9faafef0e365503439a224f1d99cff34f1892057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This file is part of LibCSS.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
 */

#ifndef css_parse_important_h_
#define css_parse_important_h_

#include "stylesheet.h"
#include "parse/language.h"

css_error parse_important(css_language *c,
		const parserutils_vector *vector, int *ctx,
		uint8_t *result);

void make_style_important(css_style *style);

#endif