git: 9front

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