code: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}