shithub: drawterm-fdroid

ref: 0748e023cf5eb117f0fa8b68cc0a8c9602e17bba
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}