amiga-libnix3/stdio/wctomb.c

12 lines
230 B
C

#include <stdlib.h>
/* Sorry, the Amiga OS locale currently doesn't support
* character sets other than ECMA Latin 1, so this is
* just a "C" locale function
*/
int wctomb(char *s,wchar_t wc)
{ if(s)
*s=wc;
return 1;
}