mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 17:54:04 +00:00
4285d9d128
- already took out HTML parser and nanohttp/nanoftp webserver
22 lines
475 B
C
22 lines
475 B
C
/*
|
|
* Summary: specific APIs to process HTML tree, especially serialization
|
|
* Description: this module implements a few function needed to process
|
|
* tree in an HTML specific way.
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __HTML_TREE_H__
|
|
#define __HTML_TREE_H__
|
|
|
|
#include <stdio.h>
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/HTMLparser.h>
|
|
|
|
|
|
#endif /* __HTML_TREE_H__ */
|
|
|