git: 9front

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