git: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}