git: 9front

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