shithub: plan9front

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