summaryrefslogtreecommitdiff
path: root/src/string/wcsnlen.c
blob: a7763373147b4fa1215a74cf20952630276b9e9a (plain) (blame)
1
2
3
4
5
6
7
8
#include <wchar.h>

size_t wcsnlen(const wchar_t *s, size_t n)
{
	const wchar_t *z = wmemchr(s, 0, n);
	if (z) n = z-s;
	return n;
}