git: 9front

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