scc

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

wmemcpy.c (179B)


      1 #include <string.h>
      2 #include <wchar.h>
      3 
      4 #undef wmemcpy
      5 
      6 wchar_t *
      7 wmemcpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n)
      8 {
      9 	return memcpy(d, s, n * sizeof(wchar_t));
     10 }