git: 9front

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