David Gonzalez Martin 38011a233c Integrate libs
2024-03-02 12:58:12 -06:00

8 lines
144 B
C

#include <uchar.h>
#include <wchar.h>
size_t c32rtomb(char *restrict s, char32_t c32, mbstate_t *restrict ps)
{
return wcrtomb(s, c32, ps);
}