git: 9front

ref: 2a9c92cbbe25a74042713d9d48c73c69b3e723dc
dir: /sys/src/libc/port/strlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
strlen(char *s)
{

	return strchr(s, 0) - s;
}