git: 9front

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