git: 9front

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