Sha256: c4b2c98a485e32c604961334b971db552a22a9f13ca36349f27d55b5c5f2ab14
Contents?: true
Size: 173 Bytes
Versions: 8
Compression:
Stored size: 173 Bytes
Contents
#include <string.h> #include <wchar.h> wchar_t *wmemcpy(wchar_t *restrict d, const wchar_t *restrict s, size_t n) { wchar_t *a = d; while (n--) *d++ = *s++; return a; }
Version data entries
8 entries across 8 versions & 1 rubygems