git: drawterm

ref: 401b33384215ea3f7e6a89e61f75e8acb35a3cc4
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}