aboutsummaryrefslogtreecommitdiff
path: root/src/base/bufio/vprint.c
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
committerNicholas Noll <nbnoll@eml.cc>2021-12-04 14:10:21 -0800
commit12e09f9f85ac48ff891adf92f3b2c9a5fea27273 (patch)
tree60051793885e9978dadf6672ef85cdda216676a2 /src/base/bufio/vprint.c
parentb80a3d28ce42be4fdec451f74620b10ee75219dc (diff)
Chore(REMOVE): finished deprecation of old io functions.
The old methods were simple wrappers of C standard library functions. We've moved (painfully) over to a new interface that allows for files to live on the stack. All users of the functionality are ported over.
Diffstat (limited to 'src/base/bufio/vprint.c')
-rw-r--r--src/base/bufio/vprint.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/src/base/bufio/vprint.c b/src/base/bufio/vprint.c
deleted file mode 100644
index 70be6bf..0000000
--- a/src/base/bufio/vprint.c
+++ /dev/null
@@ -1,34 +0,0 @@
-#include "internal.h"
-
-static int
-flush(fmt·State *fmt)
-{
- io·Header *io = fmt->file;
- io->olen = fmt->buffer.cur - fmt->buffer.end;
- if(bio·flush(io))
- return 0;
-
- fmt->buffer.end = (char*)io->e;
- fmt->buffer.cur = fmt->buffer.beg = fmt->buffer.end + io->olen;
- return 1;
-}
-
-int
-bio·vprint(io·Header *io, char *fmt, va_list args)
-{
- int n;
- fmt·State f;
-
- f.buffer.end = (char*)io->e;
- f.buffer.beg = f.buffer.cur = (char*)(io->e + io->olen);
- f.n = 0;
- f.file = io;
- f.flush = flush;
-
- va_copy(f.args,args);
- n = fmt·do(&f, fmt);
- va_end(f.args);
-
- io->olen = f.buffer.cur - f.buffer.beg;
- return n;
-}