shithub: plan9front

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