summaryrefslogtreecommitdiff
path: root/include/libcss/libcss.h
blob: 84a8be71d05ba9e595e98f56ff3cb3107f23f17d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * 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/types.h>
#include <libcss/functypes.h>
#include <libcss/computed.h>
#include <libcss/select.h>

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