plan9port/src/libbio/bprint.c

19 lines
274 B
C

#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;
}