shithub: riscv

ref: 51950fd7893f962cfe4b39cf504b868dda89f228
dir: /sys/src/libc/port/runestrlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}