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 --- include/hubbub/hubbub.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/hubbub/hubbub.h (limited to 'include/hubbub/hubbub.h') diff --git a/include/hubbub/hubbub.h b/include/hubbub/hubbub.h new file mode 100644 index 0000000..8a15eca --- /dev/null +++ b/include/hubbub/hubbub.h @@ -0,0 +1,23 @@ +/* + * 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_h_ +#define hubbub_h_ + +#include +#include +#include + +/* Initialise the Hubbub library for use */ +hubbub_error hubbub_initialise(const char *aliases_file, + hubbub_alloc alloc, void *pw); + +/* Clean up after Hubbub */ +hubbub_error hubbub_finalise(hubbub_alloc alloc, void *pw); + +#endif + -- cgit v1.2.3