shithub: drawcpu

ref: 271a7db1cd9afb4cf841101188199c3a0d0f4c62
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}