shithub: drawterm

ref: 385048962cf6c529e35f629f22b611e4b0edadfb
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}