logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

iconv.h (385B)


  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