shithub: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}