git: 9front

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