shithub: riscv

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