git: drawterm

ref: 903bcd8dba9cb9dfc70707a28089c469e5302539
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}