shithub: plan9front

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