shithub: drawterm-fdroid

ref: 3b85c767fec3d7c9852f2e86afc89554bfabd02d
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}