aboutsummaryrefslogtreecommitdiff
path: root/src/commands/command.h
diff options
context:
space:
mode:
authormarvinborner2019-09-18 11:02:15 +0200
committermarvinborner2019-09-18 11:02:15 +0200
commit8e0c4dc52871e720f793db0b21e1b4f504cefcf9 (patch)
treede337614c048f378343c287028945602a7fb7347 /src/commands/command.h
parenta6b67d12dc98e48fae69c8df411a3dda65ea48cf (diff)
Added basic command support
Diffstat (limited to 'src/commands/command.h')
-rw-r--r--src/commands/command.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/commands/command.h b/src/commands/command.h
new file mode 100644
index 0000000..2a43416
--- /dev/null
+++ b/src/commands/command.h
@@ -0,0 +1,6 @@
+#ifndef MELVIX_COMMAND_H
+#define MELVIX_COMMAND_H
+
+void exec_command(char *command);
+
+#endif