code: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}