mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-13 12:10:40 +00:00
12 lines
230 B
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;
|
|
}
|