git: 9front

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