shithub: plan9front

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