summaryrefslogtreecommitdiff
path: root/include/libcss/libcss.h
blob: de82a229f5c72097d42056582b782af3506d44eb (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
26
27
/*
 * 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 <libwapcaplet/libwapcaplet.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