shithub: front

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