summaryrefslogtreecommitdiff
path: root/src/charset/detect.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/charset/detect.h')
-rw-r--r--src/charset/detect.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/charset/detect.h b/src/charset/detect.h
new file mode 100644
index 0000000..d907921
--- /dev/null
+++ b/src/charset/detect.h
@@ -0,0 +1,24 @@
+/*
+ * This file is part of LibCSS.
+ * Licensed under the MIT License,
+ * http://www.opensource.org/licenses/mit-license.php
+ * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
+ */
+
+#ifndef css_charset_detect_h_
+#define css_charset_detect_h_
+
+#include <inttypes.h>
+
+#include <libcss/errors.h>
+#include <libcss/functypes.h>
+#include <libcss/types.h>
+
+#include <parserutils/errors.h>
+
+/* Extract a charset from a chunk of data */
+parserutils_error css_charset_extract(const uint8_t *data, size_t len,
+ uint16_t *mibenum, uint32_t *source);
+
+#endif
+