shithub: plan9front

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