mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 23:54:06 +00:00
4285d9d128
- already took out HTML parser and nanohttp/nanoftp webserver
19 lines
570 B
C
19 lines
570 B
C
/*
|
|
* Summary: interface for an HTML 4.0 non-verifying parser
|
|
* Description: this module implements an HTML 4.0 non-verifying parser
|
|
* with API compatible with the XML parser ones. It should
|
|
* be able to parse "real world" HTML, even if severely
|
|
* broken from a specification point of view.
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __HTML_PARSER_H__
|
|
#define __HTML_PARSER_H__
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/parser.h>
|
|
|
|
#endif /* __HTML_PARSER_H__ */
|