code: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}