aboutsummaryrefslogtreecommitdiff
path: root/commandHandler.c
diff options
context:
space:
mode:
Diffstat (limited to 'commandHandler.c')
-rw-r--r--commandHandler.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/commandHandler.c b/commandHandler.c
deleted file mode 100644
index 9d158f3..0000000
--- a/commandHandler.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "commandHandler.h"
-
-struct CommandHandler handlers[MAX_HANDLERS];
-
-int handlerCount = 0;
-
-void registerHandler(char *name, F_EXECUTOR executor) {
- struct CommandHandler newCH;
- newCH.p_name = name;
- newCH.p_executor = executor;
-
- handlers[handlerCount++] = newCH;
-}