shithub: plan9front

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