shithub: plan9front

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