shithub: riscv

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