mirror of
https://github.com/libretro/RetroArch
synced 2025-02-04 03:40:03 +00:00
21 lines
476 B
C
21 lines
476 B
C
/*
|
|
* Summary: Provide Canonical XML and Exclusive XML Canonicalization
|
|
* Description: the c14n modules provides a
|
|
*
|
|
* "Canonical XML" implementation
|
|
* http://www.w3.org/TR/xml-c14n
|
|
*
|
|
* and an
|
|
*
|
|
* "Exclusive XML Canonicalization" implementation
|
|
* http://www.w3.org/TR/xml-exc-c14n
|
|
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Aleksey Sanin <aleksey@aleksey.com>
|
|
*/
|
|
#ifndef __XML_C14N_H__
|
|
#define __XML_C14N_H__
|
|
#endif /* __XML_C14N_H__ */
|
|
|