git: 9front

ref: 8d8b64cd2cd5141a3957d8fb24f7b5ea61db6eda
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;
}