shithub: drawterm-fdroid

ref: 1631ca601fc896c41dde746e34d18654a6a70d73
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}