git: 9front

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