git: 9front

ref: ea26e7d5616bab06d57a80b6b5086c82323277c1
dir: /sys/src/libc/port/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}