lang-bootstrap/05/musl-final/src/string/wcsncmp.c

8 lines
151 B
C
Raw Normal View History

2025-04-05 10:55:40 +01:00
#include <wchar.h>
int wcsncmp(const wchar_t *l, const wchar_t *r, size_t n)
{
for (; n && *l==*r && *l && *r; l++, r++);
return n ? *l - *r : 0;
}