shithub: drawterm

ref: 65e8a26e1dac4a0f589f615126ad87a92c9c11ab
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}