git: 9front

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