scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

wcstombs.c (281B)


      1 #include <stdlib.h>
      2 #include <wchar.h>
      3 
      4 #undef wcstombs
      5 
      6 /*
      7  * We don't use any state in the wc* functions
      8  * so we don't need a mbstate_t variable
      9  */
     10 size_t
     11 wcstombs(char *restrict dest, const wchar_t *restrict src, size_t n)
     12 {
     13 	return wcsrtombs(dest, (void *) &src, n, NULL);
     14 }