Sha256: 317f8a424d6809df120dbf4eea6526b1d786b7fc419c601d657be605e7664ab3
Contents?: true
Size: 163 Bytes
Versions: 8
Compression:
Stored size: 163 Bytes
Contents
#include <string.h> #include <wchar.h> wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n) { for (; n && *s != c; n--, s++); return n ? (wchar_t *)s : 0; }
Version data entries
8 entries across 8 versions & 1 rubygems