mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 03:40:03 +00:00
27 lines
645 B
C
27 lines
645 B
C
/**
|
|
* Summary: interfaces to the Catalog handling system
|
|
* Description: the catalog module implements the support for
|
|
* XML Catalogs and SGML catalogs
|
|
*
|
|
* SGML Open Technical Resolution TR9401:1997.
|
|
* http://www.jclark.com/sp/catalog.htm
|
|
*
|
|
* XML Catalogs Working Draft 06 August 2001
|
|
* http://www.oasis-open.org/committees/entity/spec-2001-08-06.html
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Daniel Veillard
|
|
*/
|
|
|
|
#ifndef __XML_CATALOG_H__
|
|
#define __XML_CATALOG_H__
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <libxml/xmlversion.h>
|
|
#include <libxml/xmlstring.h>
|
|
#include <libxml/tree.h>
|
|
|
|
#endif /* __XML_CATALOG_H__ */
|