source:
trunk/sys/dietlibc/wctomb.c
@
95
Last change on this file since 95 was 1, checked in by , 8 years ago | |
---|---|
File size: 107 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | #include <stdlib.h> |
2 | #include <wchar.h> | |
3 | ||
4 | int wctomb(char *pwc, wchar_t s) { | |
5 | return wcrtomb(pwc,s,NULL); | |
6 | } |
Note: See TracBrowser
for help on using the repository browser.