git: 9front

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