git: 9front

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