git: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}