shithub: riscv

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