git: 9front

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