shithub: scc

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