iconv.h 385 B

123456789101112131415161718192021222324
  1. #ifndef _ICONV_H
  2. #define _ICONV_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #include <features.h>
  7. #define __NEED_size_t
  8. #include <bits/alltypes.h>
  9. typedef void *iconv_t;
  10. iconv_t iconv_open(const char *, const char *);
  11. size_t iconv(iconv_t, char **__restrict, size_t *__restrict, char **__restrict, size_t *__restrict);
  12. int iconv_close(iconv_t);
  13. #ifdef __cplusplus
  14. }
  15. #endif
  16. #endif