git: 9front

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