shithub: riscv

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