musl/src/multibyte/wctomb.c

9 lines
122 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <stdlib.h>
#include <wchar.h>
int wctomb(char *s, wchar_t wc)
{
if (!s) return 0;
return wcrtomb(s, wc, 0);
}