git: 9front

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