shithub: riscv

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