shithub: drawterm

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}