shithub: front

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