aboutsummaryrefslogtreecommitdiff
path: root/later.h
diff options
context:
space:
mode:
authorBen Winston2025-11-11 12:30:47 -0500
committerBen Winston2025-11-11 12:38:18 -0500
commit22d10da8be61a0b3be19b228b015fe1e5a965dbc (patch)
treef47897bc896318b6ed355eaa8df2421beae972c1 /later.h
parente5fbef8e416fe89d1fe2f7840383c26528b6b8d4 (diff)
define a format in a header file, parse command to the format
Diffstat (limited to 'later.h')
-rw-r--r--later.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/later.h b/later.h
new file mode 100644
index 0000000..875b81c
--- /dev/null
+++ b/later.h
@@ -0,0 +1,12 @@
+#ifndef __LATER_H__
+#define __LATER_H__
+
+typedef struct LaterItem LaterItem_t;
+
+struct LaterItem {
+ char* directory;
+ char* path;
+ char* command;
+};
+
+#endif