source: trunk/sys/dietlibc/mbstowcs.c @ 76

Last change on this file since 76 was 1, checked in by alain, 7 years ago

First import

File size: 160 bytes
Line 
1#include <stdlib.h>
2#include <wchar.h>
3
4size_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.