blob: 425cb5de21b8aa4ce854b106b018c33c6a56657d [file] [log] [blame]
#include <stdlib.h>
#include <wchar.h>
int wctomb(char* s, wchar_t wc) {
if (!s)
return 0;
return wcrtomb(s, wc, 0);
}