git: drawterm

ref: 347c54dbd3495d7414c6149c828d276efd232f7d
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}