git: 9front

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