summaryrefslogtreecommitdiffhomepage
path: root/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'stream.h')
-rw-r--r--stream.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/stream.h b/stream.h
new file mode 100644
index 0000000..5762bc8
--- /dev/null
+++ b/stream.h
@@ -0,0 +1,10 @@
+#pragma once
+
+#include <lua.h>
+
+struct stream
+{
+ int fd;
+};
+
+int stream_push_new(lua_State *, const int);