git: 9front

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