shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}