shithub: drawcpu

ref: 07665995b1973c612a8874badec060114393fa4d
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}