shithub: front

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