shithub: riscv

ref: 96210d79b29eb31c6958c7aada57f39dc7f6cdcf
dir: /sys/src/libventi/scorefmt.c/

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

int
vtscorefmt(Fmt *f)
{
	uchar *v;
	int i;

	v = va_arg(f->args, uchar*);
	if(v == nil)
		fmtprint(f, "*");
	else
		for(i = 0; i < VtScoreSize; i++)
			fmtprint(f, "%2.2ux", v[i]);
	return 0;
}