shithub: riscv

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