shithub: drawcpu

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}