summaryrefslogtreecommitdiff
path: root/src/parse/parse.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/parse.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/parse.h')
-rw-r--r--src/parse/parse.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse/parse.h b/src/parse/parse.h
index a2ffa35..7514887 100644
--- a/src/parse/parse.h
+++ b/src/parse/parse.h
@@ -5,8 +5,8 @@
* Copyright 2008 John-Mark Bell <jmb@netsurf-browser.org>
*/
-#ifndef css_parse_parse_h_
-#define css_parse_parse_h_
+#ifndef css_css__parse_parse_h_
+#define css_css__parse_parse_h_
#include <libwapcaplet/libwapcaplet.h>
@@ -68,7 +68,7 @@ css_error 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,
+css_error css_parser_css__parse_chunk(css_parser *parser, const uint8_t *data,
size_t len);
css_error css_parser_completed(css_parser *parser);