shithub: riscv

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