mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 03:40:03 +00:00
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__ */
|
||
|
|