git: 9front

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