git: 9front

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