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
17 lines
358 B
C
17 lines
358 B
C
/*
|
|
* Summary: minimal HTTP implementation
|
|
* Description: minimal HTTP implementation allowing to fetch resources
|
|
* like external subset.
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __NANO_HTTP_H__
|
|
#define __NANO_HTTP_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#endif /* __NANO_HTTP_H__ */
|