/* * 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_parserutils_h_ #define parserutils_parserutils_h_ #ifdef __cplusplus extern "C" { #endif #include #include #include /* Initialise the ParserUtils library for use */ parserutils_error parserutils_initialise(const char *aliases_file, parserutils_alloc alloc, void *pw); /* Clean up after ParserUtils */ parserutils_error parserutils_finalise(parserutils_alloc alloc, void *pw); #ifdef __cplusplus } #endif #endif