shithub: riscv

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