shithub: riscv

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