shithub: riscv

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