shithub: drawcpu

ref: 4fd46455350c3e29718f8fdd6d709f3c72b4abb4
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}