From 2ee13d9e464a1f5daccaff58f5d09d36b7c4f667 Mon Sep 17 00:00:00 2001 From: Aron Xu Date: Mon, 21 Sep 2015 22:58:06 +0800 Subject: Revert "Imported Upstream version 2.9.1+dfsg1" This reverts commit 7300193becde71a344c8ac0973dc290fa24d800d. --- os400/transcode.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 os400/transcode.h (limited to 'os400/transcode.h') diff --git a/os400/transcode.h b/os400/transcode.h new file mode 100644 index 0000000..6ca5773 --- /dev/null +++ b/os400/transcode.h @@ -0,0 +1,43 @@ +/** +*** Transcoding support declarations. +*** +*** See Copyright for the status of this software. +*** +*** Author: Patrick Monnerat , DATASPHERE S.A. +**/ + +#ifndef _TRANSCODE_H_ +#define _TRANSCODE_H_ + +#include +#include + + +XMLPUBFUN void xmlZapDict(xmlDictPtr * dict); +XMLPUBFUN const char * xmlTranscodeResult(const xmlChar * s, + const char * encoding, xmlDictPtr * dict, + void (*freeproc)(const void *)); +XMLPUBFUN const xmlChar * xmlTranscodeString(const char * s, + const char * encoding, xmlDictPtr * dict); +XMLPUBFUN const xmlChar * xmlTranscodeWString(const char * s, + const char * encoding, xmlDictPtr * dict); +XMLPUBFUN const xmlChar * xmlTranscodeHString(const char * s, + const char * encoding, xmlDictPtr * dict); + +#ifndef XML_NO_SHORT_NAMES +/** +*** Since the above functions are generally called "inline" (i.e.: several +*** times nested in a single expression), define shorthand names +*** to minimize calling statement length. +**/ + +#define xmlTR xmlTranscodeResult +#define xmlTS xmlTranscodeString +#define xmlTW xmlTranscodeWString +#define xmlTH xmlTranscodeHstring +#endif + +XMLPUBFUN const char * xmlVasprintf(xmlDictPtr * dict, const char * encoding, + const xmlChar * fmt, va_list args); + +#endif -- cgit v1.2.3