shithub: riscv

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