summaryrefslogtreecommitdiff
path: root/src/charset/codec.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2008-09-04 17:02:14 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2008-09-04 17:02:14 +0000
commita57f3931e853ba31f3f397e055b1445f627c8bcb (patch)
treed7e42705069446c480a0b725fc0aa1f0412859e6 /src/charset/codec.c
parent0f01495d34c2cefeb3a78e0646edbde076f8558c (diff)
downloadlibparserutils-a57f3931e853ba31f3f397e055b1445f627c8bcb.tar.gz
libparserutils-a57f3931e853ba31f3f397e055b1445f627c8bcb.tar.bz2
Extended 8bit coded. Mostly for Windows-125n support. Also needs testing.
svn path=/trunk/libparserutils/; revision=5235
Diffstat (limited to 'src/charset/codec.c')
-rw-r--r--src/charset/codec.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/charset/codec.c b/src/charset/codec.c
index 620a5b2..ca2218e 100644
--- a/src/charset/codec.c
+++ b/src/charset/codec.c
@@ -15,6 +15,7 @@ extern parserutils_charset_handler iconv_codec_handler;
#endif
extern parserutils_charset_handler charset_8859_codec_handler;
+extern parserutils_charset_handler charset_ext8_codec_handler;
extern parserutils_charset_handler charset_utf8_codec_handler;
extern parserutils_charset_handler charset_utf16_codec_handler;
@@ -22,6 +23,7 @@ static parserutils_charset_handler *handler_table[] = {
&charset_utf8_codec_handler,
&charset_utf16_codec_handler,
&charset_8859_codec_handler,
+ &charset_ext8_codec_handler,
#ifdef WITH_ICONV_CODEC
&iconv_codec_handler,
#endif