shithub: drawcpu

ref: ed92e5c04403ed8f187510a1d6484df2a213c490
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}