shithub: riscv

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