shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}