From 3f5d21d90abbd16f16ab69aec1e1a1853a93fd18 Mon Sep 17 00:00:00 2001 From: Mystery Man Date: Tue, 6 May 2003 13:11:49 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'R9_0-AMD64'. --- mdk-stage1/dietlibc/include/iconv.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 mdk-stage1/dietlibc/include/iconv.h (limited to 'mdk-stage1/dietlibc/include/iconv.h') diff --git a/mdk-stage1/dietlibc/include/iconv.h b/mdk-stage1/dietlibc/include/iconv.h new file mode 100644 index 000000000..1205994ca --- /dev/null +++ b/mdk-stage1/dietlibc/include/iconv.h @@ -0,0 +1,25 @@ +#ifndef _ICONV_H +#define _ICONV_H + +#include +#include + +/* Identifier for conversion method from one codeset to another. */ +typedef unsigned int iconv_t; + +/* Allocate descriptor for code conversion from codeset FROMCODE to + codeset TOCODE. */ +extern iconv_t iconv_open (const char *tocode, const char *fromcode) __THROW; + +/* Convert at most *INBYTESLEFT bytes from *INBUF according to the + code conversion algorithm specified by CD and place up to + *OUTBYTESLEFT bytes in buffer at *OUTBUF. */ +extern size_t iconv (iconv_t cd, const char** inbuf, + size_t* inbytesleft, + char** outbuf, + size_t* outbytesleft) __THROW; + +/* Free resources allocated for descriptor CD for code conversion. */ +extern int iconv_close (iconv_t cd) __THROW; + +#endif /* iconv.h */ -- cgit v1.2.1