shithub: drawcpu

ref: 215ef6c03d4d69a4455e9729c463d6d8bc145848
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}