shithub: riscv

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