summaryrefslogtreecommitdiff
path: root/include/libcss/libcss.h
blob: 615482897a5c4668f2067a7abf5d20d9f6b8c813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 <jmb@netsurf-browser.org>
 */

#ifndef libcss_h_
#define libcss_h_

#include <libcss/errors.h>
#include <libcss/functypes.h>
#include <libcss/types.h>

/* 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