aboutsummaryrefslogtreecommitdiff
path: root/src/libbio/bprint.c
blob: f15203ce06d2d45663abe0ae99de2be96a6df175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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;
}