summaryrefslogtreecommitdiff
path: root/src/charset/charset.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2010-12-04 15:28:50 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2010-12-04 15:28:50 +0000
commit2fee3114b46682b220c73aae7c4f2466dedb81ff (patch)
treed9dc3de599ec43fdf5cf70b59ac1fd049672914e /src/charset/charset.h
parentd485dbd52ebc6a911a5ddcf6891212fccb82e8c0 (diff)
downloadlibparserutils-2fee3114b46682b220c73aae7c4f2466dedb81ff.tar.gz
libparserutils-2fee3114b46682b220c73aae7c4f2466dedb81ff.tar.bz2
Remove init/final code and turn aliases into static data structure. r=vince
svn path=/trunk/libparserutils/; revision=10961
Diffstat (limited to 'src/charset/charset.h')
-rw-r--r--src/charset/charset.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/charset/charset.h b/src/charset/charset.h
deleted file mode 100644
index 4b07577..0000000
--- a/src/charset/charset.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * This file is part of LibParserUtils.
- * Licensed under the MIT License,
- * http://www.opensource.org/licenses/mit-license.php
- * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
- */
-
-#ifndef parserutils_charset_charset_h_
-#define parserutils_charset_charset_h_
-
-#include <parserutils/errors.h>
-#include <parserutils/functypes.h>
-#include <parserutils/types.h>
-
-/* Initialise the Charset library for use */
-parserutils_error parserutils_charset_initialise(const char *aliases_file,
- parserutils_alloc alloc, void *pw);
-
-/* Clean up after Charset */
-parserutils_error parserutils_charset_finalise(parserutils_alloc alloc,
- void *pw);
-
-#endif
-