shithub: riscv

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