shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}