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