shithub: scc

ref: a62afbe74e2be29ed8b697a4094c5778cddfa09e
dir: /libc/src/strlen.c/

View raw version
/* See LICENSE file for copyright and license details. */

#include <string.h>

size_t
strlen(const char *s)
{
	size_t n = 0;

	while (*s++)
		++n;
	return n;
}