aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-04-19 09:15:57 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-04-19 09:15:57 -0700
commit1ae9a10d56fca8fe585e77533c49e5c9d680ff12 (patch)
treeb6e51a3c385727efca5cd9a2ca83bc770d10a6a4 /include
parent21055a1e5d34dda1b8151dd46a6bedca22bd73d9 (diff)
chore: removed bufio from tree
Diffstat (limited to 'include')
-rw-r--r--include/bufio.h27
-rw-r--r--include/io.h34
2 files changed, 0 insertions, 61 deletions
diff --git a/include/bufio.h b/include/bufio.h
deleted file mode 100644
index b672563..0000000
--- a/include/bufio.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-
-typedef struct bufio·Reader bufio·Reader;
-
-bufio·Reader *bufio·newreader(io·Reader r);
-error bufio·freereader(bufio·Reader *r);
-
-int bufio·read(bufio·Reader *r, byte *buf, int n);
-int bufio·readln(bufio·Reader *r, byte *buf, int n, error* err);
-byte bufio·get(bufio·Reader *r);
-error bufio·unget(bufio·Reader *r);
-byte bufio·peek(bufio·Reader *r);
-int bufio·peekfor(bufio·Reader *r, byte *buf, int n);
-void bufio·discard(bufio·Reader *r, int n);
-void bufio·clear(bufio·Reader *r);
-
-typedef struct bufio·Writer bufio·Writer;
-
-bufio·Writer *bufio·newwriter(io·Writer w);
-error bufio·freewriter(bufio·Writer *w);
-
-int bufio·write(bufio·Writer *w, byte *buf, int n);
-error bufio·put(bufio·Writer *w, byte b);
-error bufio·flush(bufio·Writer* w);
-
-/* TODO */
-typedef struct bufio·Scanner bufio·Scanner;
diff --git a/include/io.h b/include/io.h
deleted file mode 100644
index 9813b85..0000000
--- a/include/io.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#pragma once
-
-typedef struct io·Reader
-{
- Iface impl;
- int (*read)(void*, byte *buf, int n);
-} io·Reader;
-
-typedef struct io·ByteReader
-{
- Iface impl;
- int (*read)(void*, byte *buf, int n);
- byte (*get)(void*);
-} io·ByteReader;
-
-typedef struct io·Writer
-{
- Iface impl;
- int (*write)(void*, byte *buf, int n);
-} io·Writer;
-
-typedef struct io·ReadWriter
-{
- Iface impl;
- int (*read)(void*, byte *buf, int n);
- int (*write)(void*, byte *buf, int n);
-} io·ReadWriter;
-
-typedef enum io·SeekPos
-{
- SEEK·set,
- SEEK·cur,
- SEEK·end,
-} io·SeekPos;