shithub: riscv

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