/* * 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 libcss_h_ #define libcss_h_ #include #include #include #include #include #include #include #include /* Initialise the CSS library for use */ css_error css_initialise(const char *aliases_file, css_allocator_fn alloc, void *pw); /* Clean up after LibCSS */ css_error css_finalise(css_allocator_fn alloc, void *pw); #endif