git: 9front

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