git: drawterm

ref: 4e32a9fa6e58c1474f747a99083303c4a2f14ea7
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}