shithub: front

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