git: 9front

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