shithub: plan9front

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