code: drawterm

ref: 6971ee1bf57435a8cf1d7b6936599bec126516cd
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}