code: drawterm

ref: 3e20c04178c0017769e38a9138bf72097b2ad7d6
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}