shithub: drawterm-fdroid

ref: 4f14409f5630abbb4a96d54e7823da3c7ac08c81
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}