shithub: riscv

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