shithub: riscv

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