| bprint.c - 9base - revived minimalist port of Plan 9 userland to Unix | |
| git clone git://git.suckless.org/9base | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| bprint.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 } |