shithub: drawcpu

ref: 94cb585132563082a7db68d7a61bb59e885c5b20
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}