URI:
       tbprint.c - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
       tbprint.c (176B)
       ---
            1 #include        "lib9.h"
            2 #include        <bio.h>
            3 
            4 int
            5 Bprint(Biobuf *bp, 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 }