source:
trunk/sys/dietlibc/mbtowc.c
@
105
| Last change on this file since 105 was 1, checked in by , 9 years ago | |
|---|---|
| File size: 126 bytes | |
| Line | |
|---|---|
| 1 | #include <stdlib.h> |
| 2 | #include <wchar.h> |
| 3 | |
| 4 | int mbtowc(wchar_t *pwc, const char *s, size_t n) { |
| 5 | return mbrtowc(pwc,s,n,NULL); |
| 6 | } |
Note: See TracBrowser
for help on using the repository browser.
