git: 9front

ref: 2bc6fcf45b0db8ab6abfe8c2f551212074717ef4
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;
}