shithub: drawterm

ref: 368599deabba0aa9d18b05ffc0b6a87d1fc7d22a
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}