shithub: riscv

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