diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-11-17 20:57:20 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-11-17 20:57:20 (GMT) |
commit | 5720be2a1ff34bf88992db24716f1e489a745e01 (patch) | |
tree | 459fb7d1a9611f563e3000386df5cb7cdf506916 /libxml2/os400/transcode.h | |
parent | abe7ce3988e8ba12f6bdb311c576e275435de21d (diff) | |
download | blt-5720be2a1ff34bf88992db24716f1e489a745e01.zip blt-5720be2a1ff34bf88992db24716f1e489a745e01.tar.gz blt-5720be2a1ff34bf88992db24716f1e489a745e01.tar.bz2 |
local fork libxml2
Diffstat (limited to 'libxml2/os400/transcode.h')
-rw-r--r-- | libxml2/os400/transcode.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/libxml2/os400/transcode.h b/libxml2/os400/transcode.h deleted file mode 100644 index 6ca5773..0000000 --- a/libxml2/os400/transcode.h +++ /dev/null @@ -1,43 +0,0 @@ -/** -*** Transcoding support declarations. -*** -*** See Copyright for the status of this software. -*** -*** Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A. -**/ - -#ifndef _TRANSCODE_H_ -#define _TRANSCODE_H_ - -#include <stdarg.h> -#include <libxml/dict.h> - - -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 |