shithub: riscv

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