shithub: drawcpu

ref: 6d3e368f2d0796e366d2df8ed56e3b6fe0c42182
dir: /libc/runestrlen.c/

View raw version
#include <u.h>
#include <libc.h>

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}