shithub: front

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