blob: f15203ce06d2d45663abe0ae99de2be96a6df175 [file] [log] [blame]
#include "lib9.h"
#include <bio.h>
int
Bprint(Biobuf *bp, char *fmt, ...)
{
va_list args;
Fmt f;
int n;
if(Bfmtinit(&f, bp) < 0)
return -1;
va_start(args, fmt);
n = fmtvprint(&f, fmt, args);
va_end(args);
if(n > 0 && Bfmtflush(&f) < 0)
return -1;
return n;
}