aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-07-08 15:47:05 +0200
committeraxtloss <axtlos@getcryst.al>2024-07-08 15:47:05 +0200
commit7f0cf8ec2b21da8bf049a83e08a7dfb03ca536cb (patch)
tree3ab90546b8c1f7e9b575355bce66ae788b19cb3d /src/config.h
parenta3377b0606c708efdc5656532676038c28a5c444 (diff)
downloadrunc-7f0cf8ec2b21da8bf049a83e08a7dfb03ca536cb.tar.gz
runc-7f0cf8ec2b21da8bf049a83e08a7dfb03ca536cb.tar.bz2
add config parsing
Diffstat (limited to 'src/config.h')
-rw-r--r--src/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/config.h b/src/config.h
index f27b17f..f73d2b3 100644
--- a/src/config.h
+++ b/src/config.h
@@ -1,7 +1,8 @@
+#include <stdlib.h>
struct compile_cmd_t {
char *cmd;
char *args;
char *fileext;
};
-void get_commands();
+size_t get_commands(struct compile_cmd_t ***ccmds_glob);