code: drawterm

ref: 2f3f38b844da4296ea6dddab4ac4936d012ad047
dir: /libc/runestrlen.c/

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

long
runestrlen(Rune *s)
{

	return runestrchr(s, 0) - s;
}