git: 9front

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