shithub: drawcpu

ref: 76214d37db206e5244c337da917316da53afd2a8
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}