shithub: drawcpu

ref: 82dc85253c9ab0f7b9925c69e4b065ca4347ab04
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}