shithub: riscv

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