wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

bprint.c (183B)


      1 #include	"plan9.h"
      2 #include	<bio.h>
      3 
      4 int
      5 Bprint(Biobuf *bp, const char *fmt, ...)
      6 {
      7 	int n;
      8 	va_list arg;
      9 
     10 	va_start(arg, fmt);
     11 	n = Bvprint(bp, fmt, arg);
     12 	va_end(arg);
     13 	return n;
     14 }