shithub: drawcpu

ref: 23109a6631eb21b2d849807b470c239d71d09159
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}