shithub: drawterm-fdroid

ref: 39347ab47dab6c556bb37ced7526bfcc8de4cf9b
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}