git: 9front

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