Files
2015-04-16 09:16:48 +02:00

19 lines
171 B
C

#include <stdlib.h>
#include <wchar.h>
int wctomb(char *s, wchar_t c)
{
int r;
if (s == NULL)
{
r = 0;
}
else
{
r = (int)wcrtomb(s, c, NULL);
}
return r;
}