git: drawterm

ref: 74af129a2094d40e5b3a94c1116cf83cee84b928
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}