shithub: plan9front

ref: 7dcc3eb27a449eb72a66a915b18d7376c8d0e0e9
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;
}