shithub: riscv

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