git: 9front

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