shithub: drawterm-fdroid

ref: 9b112390be4362d64cfa2d75c4c7e131e38c2153
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}