shithub: drawcpu

ref: 868b16b5459193afd2044121c09884ccf5560df2
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}