git: 9front

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