c32rtomb.c 144 B

1234567
  1. #include <uchar.h>
  2. #include <wchar.h>
  3. size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps)
  4. {
  5. return wcrtomb(s, c32, ps);
  6. }