aboutsummaryrefslogtreecommitdiff
path: root/later.h
diff options
context:
space:
mode:
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