aboutsummaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/commands.c b/src/commands.c
index e72b9e0..5527e2e 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -5,6 +5,10 @@
#include <stdio.h>
#include <string.h>
+struct imv_commands {
+ struct list *command_list;
+};
+
struct command {
char* command;
void (*handler)(struct list *args, const char *argstr, void *data);