shithub: riscv

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