aboutsummaryrefslogtreecommitdiff
path: root/include/io.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/io.h')
-rw-r--r--include/io.h34
1 files changed, 0 insertions, 34 deletions
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;