git: 9front

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