1#include <stdlib.h>
2#include <wchar.h>
3
4int wctomb(char* s, wchar_t wc) {
5    if (!s)
6        return 0;
7    return wcrtomb(s, wc, 0);
8}
9