git: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}