summaryrefslogtreecommitdiffhomepage
path: root/stream.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2021-08-21 14:35:46 +0200
committerAki <please@ignore.pl>2021-08-21 14:35:46 +0200
commitf41138949b4fb13331391cf3d7570d38f04a2ce8 (patch)
tree4af9d8fb30fe7d044957c158e6e8c5c53c9bea46 /stream.h
parentd4e5c2f12a284b64f6b68a994d63fe7babf7f46d (diff)
downloadplop-f41138949b4fb13331391cf3d7570d38f04a2ce8.zip
plop-f41138949b4fb13331391cf3d7570d38f04a2ce8.tar.gz
plop-f41138949b4fb13331391cf3d7570d38f04a2ce8.tar.bz2
Moved buffer to own set of files
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/stream.h b/stream.h
index 5119fcc..92df502 100644
--- a/stream.h
+++ b/stream.h
@@ -2,14 +2,7 @@
#include <lua.h>
-struct buffer
-{
- char * data;
- int length;
- int offset;
- int next;
- int allocated;
-};
+#include "buffer.h"
struct stream
{