git: 9front

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