shithub: drawcpu

ref: 8df6746590a6bf6ebebbbc5509c6bbf5da889c59
dir: /libc/runestrlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}