shithub: scc

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