code: drawterm

ref: 3c2bf42f227c3316fe7f7b55d2bf19a5dcc7e7a9
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}