git: 9front

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