shithub: plan9front

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