musl-tcc/src/multibyte/c32rtomb.c

8 lines
144 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <uchar.h>
#include <wchar.h>
size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps)
{
return wcrtomb(s, c32, ps);
}