git: 9front

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