shithub: drawcpu

ref: 35f93cec31d91dc9c68911fc0ac658eb67363af4
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}