git: 9front

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