shithub: front

ref: 74aef0eac9330a485ec332ee49575d990a7bd41a
dir: /sys/src/ape/lib/ap/gen/strlen.c/

View raw version
#include <string.h>

size_t
strlen(const char *s)
{
	return strchr(s, 0) - s;
}