git: drawterm

ref: 19f9f65cede04b19db1c5bc861119a613f8b91b8
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}