git: 9front

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