summaryrefslogtreecommitdiff
path: root/src/parse/important.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/important.h')
-rw-r--r--src/parse/important.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/parse/important.h b/src/parse/important.h
new file mode 100644
index 0000000..9faafef
--- /dev/null
+++ b/src/parse/important.h
@@ -0,0 +1,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