shithub: drawcpu

ref: 830f663db481f4566d0da79d2c29069d1e38a36d
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}