summaryrefslogtreecommitdiff
path: root/src/charset
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset')
-rw-r--r--src/charset/detect.c2
-rw-r--r--src/charset/detect.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/charset/detect.c b/src/charset/detect.c
index 9f8da69..a6b2346 100644
--- a/src/charset/detect.c
+++ b/src/charset/detect.c
@@ -35,7 +35,7 @@ static parserutils_error try_ascii_compatible_charset(const uint8_t *data,
*
* CSS 2.1 $4.4
*/
-parserutils_error css_charset_extract(const uint8_t *data, size_t len,
+parserutils_error css__charset_extract(const uint8_t *data, size_t len,
uint16_t *mibenum, uint32_t *source)
{
parserutils_error error;
diff --git a/src/charset/detect.h b/src/charset/detect.h
index d907921..c963ebd 100644
--- a/src/charset/detect.h
+++ b/src/charset/detect.h
@@ -17,7 +17,7 @@
#include <parserutils/errors.h>
/* Extract a charset from a chunk of data */
-parserutils_error css_charset_extract(const uint8_t *data, size_t len,
+parserutils_error css__charset_extract(const uint8_t *data, size_t len,
uint16_t *mibenum, uint32_t *source);
#endif