git: 9front

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