shithub: riscv

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