git: 9front

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