Line | |
---|
1 | /* |
---|
2 | * Gaycko Text mode web browser |
---|
3 | * Copyright (c) 2011 Jean-Yves Lamoureux <jylam@lnxscene.org> |
---|
4 | * All Rights Reserved |
---|
5 | * |
---|
6 | * This library is free software. It comes without any warranty, to |
---|
7 | * the extent permitted by applicable law. You can redistribute it |
---|
8 | * and/or modify it under the terms of the Do What The Fuck You Want |
---|
9 | * To Public License, Version 2, as published by Sam Hocevar. See |
---|
10 | * http://sam.zoy.org/wtfpl/COPYING for more details. |
---|
11 | */ |
---|
12 | #ifndef PARSE_H |
---|
13 | #define PARSE_H |
---|
14 | |
---|
15 | #include <stdint.h> |
---|
16 | #include <sys/types.h> |
---|
17 | #include <tidy.h> |
---|
18 | #include <buffio.h> |
---|
19 | |
---|
20 | #include <libxml/parser.h> |
---|
21 | #include <libxml/xinclude.h> |
---|
22 | #include <libxml/tree.h> |
---|
23 | #include <libxml/xmlIO.h> |
---|
24 | #include <libxml/HTMLparser.h> |
---|
25 | |
---|
26 | #include "dom/dom.h" |
---|
27 | |
---|
28 | gDOM *gaycko_parse(char *data, unsigned int size); |
---|
29 | |
---|
30 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.