shithub: drawcpu

ref: 8d93ccdbb2a2dee8d2eb1387da1b316fdf84b208
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}