mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2024-12-25 23:21:26 +03:00
35 lines
982 B
C
35 lines
982 B
C
|
/*
|
||
|
* encoding.h : interface for the encoding conversion functions needed for
|
||
|
* XML
|
||
|
*
|
||
|
* Related specs:
|
||
|
* rfc2044 (UTF-8 and UTF-16) F. Yergeau Alis Technologies
|
||
|
* [ISO-10646] UTF-8 and UTF-16 in Annexes
|
||
|
* [ISO-8859-1] ISO Latin-1 characters codes.
|
||
|
* [UNICODE] The Unicode Consortium, "The Unicode Standard --
|
||
|
* Worldwide Character Encoding -- Version 1.0", Addison-
|
||
|
* Wesley, Volume 1, 1991, Volume 2, 1992. UTF-8 is
|
||
|
* described in Unicode Technical Report #4.
|
||
|
* [US-ASCII] Coded Character Set--7-bit American Standard Code for
|
||
|
* Information Interchange, ANSI X3.4-1986.
|
||
|
*
|
||
|
* Original code from "Martin J. Duerst" <duerst@w3.org>
|
||
|
*
|
||
|
* See Copyright for the status of this software.
|
||
|
*
|
||
|
* Daniel.Veillard@w3.org
|
||
|
*/
|
||
|
|
||
|
#ifndef __XML_ENCODING_H__
|
||
|
#define __XML_ENCODING_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __XML_ENCODING_H__ */
|