git: drawterm

ref: 0b43ac046ca81d78e9eca535ab1e92971d30405a
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}