blob: 8db928ab3c770801a78c0865b52054eb3901ef1c [file] [log] [blame]
#include <uchar.h>
#include <wchar.h>
size_t c32rtomb(char* restrict s, char32_t c32, mbstate_t* restrict ps) {
return wcrtomb(s, c32, ps);
}