shithub: drawcpu

ref: f69f735ebcf41200cc3817019a862a8d7bd76961
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}