git: 9front

ref: bc9f2f929cb2930d5be47da65c7a31f52a5c2dfd
dir: /sys/src/cmd/unix/drawterm/libc/runestrlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}