git: 9front

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