aboutsummaryrefslogtreecommitdiff
path: root/src/libbio/bprint.c
blob: 878bfb63a94dc97c43aa657de229b20c594d854b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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;
	n = fmtprint(&f, fmt, args);
	if(n > 0 && Bfmtflush(&f) < 0)
		return -1;
	return n;
}