shithub: drawterm-fdroid

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}