git: 9front

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