shithub: plan9front

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