git: 9front

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