summary refs log tree commit diff
path: root/ingest.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-07-28 16:02:50 -0400
committerJune McEnroe <june@causal.agency>2019-07-28 16:02:50 -0400
commit9f16dc623c229a29d5a15c60d54e81472fb71277 (patch)
tree3bf0e4ba8882560507d26745647f2876697dfb5c /ingest.c
parentRename ptee stream (diff)
downloadstream-9f16dc623c229a29d5a15c60d54e81472fb71277.tar.gz
stream-9f16dc623c229a29d5a15c60d54e81472fb71277.zip
Add empty commands
Diffstat (limited to 'ingest.c')
-rw-r--r--ingest.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/ingest.c b/ingest.c
new file mode 100644
index 0000000..dde890a
--- /dev/null
+++ b/ingest.c
@@ -0,0 +1,24 @@
+/* Copyright (C) 2019  C. McEnroe <june@causal.agency>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <err.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <sysexits.h>
+
+int main(void) {
+	// TODO: Read info, listen on socket, emulate terminal.
+}