shithub: drawcpu

ref: 0a0c16460f953250153a4f12d4b6cb267c34a377
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}