summaryrefslogtreecommitdiff
path: root/src/utils
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/utils
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/utils')
-rw-r--r--src/utils/utils.c2
-rw-r--r--src/utils/utils.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/utils.c b/src/utils/utils.c
index b5f53da..94b15e1 100644
--- a/src/utils/utils.c
+++ b/src/utils/utils.c
@@ -7,7 +7,7 @@
#include "utils/utils.h"
-css_fixed number_from_lwc_string(lwc_string *string,
+css_fixed css__number_from_lwc_string(lwc_string *string,
bool int_only, size_t *consumed)
{
size_t len;
diff --git a/src/utils/utils.h b/src/utils/utils.h
index 1fe2d46..4859dea 100644
--- a/src/utils/utils.h
+++ b/src/utils/utils.h
@@ -34,7 +34,7 @@
#define N_ELEMENTS(x) (sizeof((x)) / sizeof((x)[0]))
#endif
-css_fixed number_from_lwc_string(lwc_string *string, bool int_only,
+css_fixed css__number_from_lwc_string(lwc_string *string, bool int_only,
size_t *consumed);
static inline bool isDigit(uint8_t c)