summaryrefslogtreecommitdiff
path: root/src/parse/important.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
commit33b37afeab6180e4fdc3c97f7f6cc713686ac6a9 (patch)
treefeb641941e4fbd0db11bf70415fee5e3be50a08a /src/parse/important.h
parenta8537a5405583a4c975b56d95cab8bdd5d406e9f (diff)
downloadlibcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.gz
libcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.bz2
Ensure there are zero global symbols without css_ or css__ in front of them. This helps prevent confusion if someone else wants a function called parse_background or similar
svn path=/trunk/libcss/; revision=11416
Diffstat (limited to 'src/parse/important.h')
-rw-r--r--src/parse/important.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/parse/important.h b/src/parse/important.h
index 9faafef..ba5e118 100644
--- a/src/parse/important.h
+++ b/src/parse/important.h
@@ -5,16 +5,16 @@
* Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
*/
-#ifndef css_parse_important_h_
-#define css_parse_important_h_
+#ifndef css_css__parse_important_h_
+#define css_css__parse_important_h_
#include "stylesheet.h"
#include "parse/language.h"
-css_error parse_important(css_language *c,
+css_error css__parse_important(css_language *c,
const parserutils_vector *vector, int *ctx,
uint8_t *result);
-void make_style_important(css_style *style);
+void css__make_style_important(css_style *style);
#endif