shithub: plan9front

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