From 72c39e3522c5781d1e7dc8abad77d96141c5d49b Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 1 May 2008 16:36:27 +0000 Subject: Import beginnings of a CSS parsing library. Currently comprises a lexer. svn path=/trunk/libcss/; revision=4112 --- include/libcss/libcss.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 include/libcss/libcss.h (limited to 'include/libcss/libcss.h') diff --git a/include/libcss/libcss.h b/include/libcss/libcss.h new file mode 100644 index 0000000..364a3eb --- /dev/null +++ b/include/libcss/libcss.h @@ -0,0 +1,23 @@ +/* + * This file is part of LibCSS. + * Licensed under the MIT License, + * http://www.opensource.org/licenses/mit-license.php + * Copyright 2007 John-Mark Bell + */ + +#ifndef css_h_ +#define css_h_ + +#include +#include +#include + +/* Initialise the CSS library for use */ +css_error css_initialise(const char *aliases_file, + css_alloc alloc, void *pw); + +/* Clean up after LibCSS */ +css_error css_finalise(css_alloc alloc, void *pw); + +#endif + -- cgit v1.2.3