git: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}