From 2777a04ed2ba4fd36138b991d66a32a283361f7e Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 1 May 2008 16:34:46 +0000 Subject: Import parser construction utility library svn path=/trunk/libparserutils/; revision=4111 --- src/charset/charset.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/charset/charset.h (limited to 'src/charset/charset.h') diff --git a/src/charset/charset.h b/src/charset/charset.h new file mode 100644 index 0000000..4b07577 --- /dev/null +++ b/src/charset/charset.h @@ -0,0 +1,24 @@ +/* + * This file is part of LibParserUtils. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2007 John-Mark Bell + */ + +#ifndef parserutils_charset_charset_h_ +#define parserutils_charset_charset_h_ + +#include +#include +#include + +/* 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 + -- cgit v1.2.3