git: 9front

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