git: 9front

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