shithub: plan9front

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