diff options
author | axtloss <axtlos@getcryst.al> | 2024-07-08 15:47:05 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-07-08 15:47:05 +0200 |
commit | 7f0cf8ec2b21da8bf049a83e08a7dfb03ca536cb (patch) | |
tree | 3ab90546b8c1f7e9b575355bce66ae788b19cb3d /src/config.h | |
parent | a3377b0606c708efdc5656532676038c28a5c444 (diff) | |
download | runc-7f0cf8ec2b21da8bf049a83e08a7dfb03ca536cb.tar.gz runc-7f0cf8ec2b21da8bf049a83e08a7dfb03ca536cb.tar.bz2 |
add config parsing
Diffstat (limited to '')
-rw-r--r-- | src/config.h | 3 |
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); |