summaryrefslogtreecommitdiff
path: root/src/parse/parse.c
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.c
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.c')
-rw-r--r--src/parse/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/parse.c b/src/parse/parse.c
index e5b9c84..276b1d8 100644
--- a/src/parse/parse.c
+++ b/src/parse/parse.c
@@ -293,7 +293,7 @@ css_error css_parser_setopt(css_parser *parser, css_parser_opttype type,
* \param len Length of chunk
* \return CSS_OK on success, appropriate error otherwise
*/
-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)
{
parserutils_error perror;