summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'command.h')
-rw-r--r--command.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/command.h b/command.h
new file mode 100644
index 0000000..7166eb6
--- /dev/null
+++ b/command.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <vector>
+#include <string>
+#include <utility>
+
+
+std::string runCommand(const std::vector<std::string> &args);
+std::pair<int, std::string> readCommand(const std::vector<std::string> &args);