shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}