shithub: drawcpu

ref: ecdf17034b03e4a866651dba39ac4b5206f4a460
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}