shithub: riscv

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