git: 9front

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