git: 9front

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