shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}