git: drawterm

ref: 73fadf6cc5bb45316209d2b8e11d47a535dc8f5c
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}