git: 9front

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