git: drawterm

ref: 44a7bdfaeb268bbc9df69693fa52d551beb2516d
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}