shithub: riscv

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