code: drawterm

ref: 0fbac08cd028f95c5f5e99e3f3dfd27a2f2858ab
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}