shithub: drawcpu

ref: 9b8e21a6669c6312809b174220fca59728cbb68b
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}