git: drawterm

ref: 1361c96b22e5d09a99d4fbfac1df1cb8cf23551d
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}