summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code2/fileread.h
diff options
context:
space:
mode:
authorthing 1 <thing1@seacrossedlovers.xyz>2024-11-14 08:11:18 +0000
committerthing 1 <thing1@seacrossedlovers.xyz>2024-11-14 08:11:18 +0000
commit2e1ccff01cf89539b621ac786898229307847f4b (patch)
tree88f91a94a58e6452288ed3145de51cb73c9f249b /comp/lucas-standen-NEA/code2/fileread.h
parentbca6aeb86a3ca5d33cf1f33a81fcce2220d97a5a (diff)
made too many changes to note
Diffstat (limited to 'comp/lucas-standen-NEA/code2/fileread.h')
-rw-r--r--comp/lucas-standen-NEA/code2/fileread.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/code2/fileread.h b/comp/lucas-standen-NEA/code2/fileread.h
new file mode 100644
index 0000000..fe47f25
--- /dev/null
+++ b/comp/lucas-standen-NEA/code2/fileread.h
@@ -0,0 +1,13 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#include "util.h"
+
+typedef struct strings {
+ char **strs;
+ int count;
+} strings;
+
+strings *fileread(FILE *f);