summaryrefslogtreecommitdiff
path: root/05/musl-0.6.0/src/string/strnlen.c
blob: 6442eb793fbeeda51a3f19b9e1c1269a030444e9 (plain)
1
2
3
4
5
6
7
#include <string.h>

size_t strnlen(const char *s, size_t n)
{
	const char *p = memchr(s, 0, n);
	return p ? p-s : n;
}