code: drawterm

ref: 59dda5420c908820123fb597b20714206c3b63b2
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}