aboutsummaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-08-21 20:16:43 +0100
committerHarry Jeffery <harry@exec64.co.uk>2019-08-21 20:16:43 +0100
commitd2f5deb27816889cdc9b25e868557f0bcd23e163 (patch)
treeb5709f59f5b5d0fe7c2735f01e79ffe5d6df2844 /src/commands.c
parentcf7f3127cbde7354f1b592af0d23de4d7cd1123f (diff)
downloadimv-d2f5deb27816889cdc9b25e868557f0bcd23e163.tar.gz
Improve header commenting
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);