code: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}