shithub: drawterm-fdroid

ref: 2d15857c35ea4aa8cea1d32600bfdbf776411e4c
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}