Sha256: e860363ed0ca95ccd2378f26fc6514fa76748c6cbee751ba4033985605842747
Contents?: true
Size: 149 Bytes
Versions: 8
Compression:
Stored size: 149 Bytes
Contents
#include <string.h> #include <wchar.h> wchar_t *wmemset(wchar_t *d, wchar_t c, size_t n) { wchar_t *ret = d; while (n--) *d++ = c; return ret; }
Version data entries
8 entries across 8 versions & 1 rubygems