shithub: scc

ref: c3b9a7407da63336ba06d617eefab16e82aa7c5b
dir: /src/libc/string/strlen.c/

View raw version
#include <string.h>
#undef strlen

size_t
strlen(const char *s)
{
	const char *t;

	for (t = s; *t; ++t)
		;
	return t - s;
}