shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}