git: 9front

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