code: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}