shithub: riscv

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