aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-05-03 09:22:02 -0400
committerShav Kinderlehrer <[email protected]>2023-05-03 09:22:02 -0400
commit8cbe2307f7ab8d52643d3dc48da7aadc1869efc8 (patch)
tree9873eca9292aef55ac946b78843fd8af729e5224 /include
parenta7fec62499fa418c6a1802d65dc24cfd2cbfd34b (diff)
downloadlat-8cbe2307f7ab8d52643d3dc48da7aadc1869efc8.tar.gz
lat-8cbe2307f7ab8d52643d3dc48da7aadc1869efc8.zip
Add extension exec scaffolding
Diffstat (limited to 'include')
-rw-r--r--include/exec.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/exec.h b/include/exec.h
new file mode 100644
index 0000000..a761c3e
--- /dev/null
+++ b/include/exec.h
@@ -0,0 +1,6 @@
+#ifndef EXEC_H
+#define exec_h
+#include "types.h"
+
+struct line runextension(struct line *data, char *filename, size_t n);
+#endif