shithub: drawterm-fdroid

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

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}