haiku/headers/posix/iconv.h
shatty 3b1dc84a90 must include size_t for iconv
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4147 a95241bf-73f2-0310-859d-f6bbb57e9c96
2003-07-31 00:57:04 +00:00

25 lines
460 B
C

#ifndef _ICONV_H_
#define _ICONV_H_
/*
** Distributed under the terms of the OpenBeOS License.
*/
#include <size_t.h>
typedef void *iconv_t;
#ifdef __cplusplus
extern "C" {
#endif
extern iconv_t iconv_open(const char *toCode, const char *fromCode);
extern int iconv_close(iconv_t cd);
extern size_t iconv(iconv_t cd, char **inBuffer, size_t *inBytesLeft,
char **outBuffer, size_t *outBytesLeft);
#ifdef __cplusplus
}
#endif
#endif /* _ICONV_H_ */