shithub: plan9front

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