shithub: scc

ref: 8cfd34400a006cb6bca88595ce93ece172aadad4
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;
}