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