shithub: drawcpu

ref: 46b0c36526f6004ba57adf9fe675313bae870836
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}