shithub: front

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