summaryrefslogtreecommitdiff
path: root/src/execute.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/execute.h')
-rw-r--r--src/execute.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/execute.h b/src/execute.h
new file mode 100644
index 0000000..f284230
--- /dev/null
+++ b/src/execute.h
@@ -0,0 +1,9 @@
+// -*- c++ -*-
+#pragma once
+
+#include <string>
+#include <vector>
+
+int execute(const std::string& command,
+ const std::vector<std::string>& args,
+ bool verbose = true);