shithub: drawterm-fdroid

ref: 8741145095d580cae230e3d4dd1928168bbb49d5
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}