git: 9front

ref: 0eb5d8f7061c9c8ef186adf7aa743c477195e39a
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;
}