shithub: riscv

ref: d24610fe3813b800ee436dfe5a1121e39721c8f4
dir: /sys/src/liboventi/scorefmt.c/

View raw version
#include <u.h>
#include <libc.h>
#include <oventi.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;
}