Sha256: ccdae905bb221abdb5d6cc74b443e1061d771995ed1891006674121ebed34208
Contents?: true
Size: 162 Bytes
Versions: 8
Compression:
Stored size: 162 Bytes
Contents
#include <string.h> #include <wchar.h> int wmemcmp(const wchar_t *l, const wchar_t *r, size_t n) { for (; n && *l==*r; n--, l++, r++); return n ? *l-*r : 0; }
Version data entries
8 entries across 8 versions & 1 rubygems