From 7b30a5520cfb56e651f0eb4da85a3e07747da7dc Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sat, 23 Jun 2007 22:40:25 +0000 Subject: Import hubbub -- an HTML parsing library. Plenty of work still to do (like tree generation ;) svn path=/trunk/hubbub/; revision=3359 --- src/charset/detect.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/charset/detect.h (limited to 'src/charset/detect.h') diff --git a/src/charset/detect.h b/src/charset/detect.h new file mode 100644 index 0000000..854a8d6 --- /dev/null +++ b/src/charset/detect.h @@ -0,0 +1,22 @@ +/* + * This file is part of Hubbub. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2007 John-Mark Bell + */ + +#ifndef hubbub_charset_detect_h_ +#define hubbub_charset_detect_h_ + +#include + +#include +#include +#include + +/* Extract a charset from a chunk of data */ +hubbub_error hubbub_charset_extract(const uint8_t **data, size_t *len, + uint16_t *mibenum, hubbub_charset_source *source); + +#endif + -- cgit v1.2.3