git: 9front

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