shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}