summaryrefslogtreecommitdiff
path: root/src/execute.h
blob: c750a83478b837ae698af4639555ec3363860822 (plain)
1
2
3
4
5
6
7
8
9
10
11
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once

#include <string>
#include <vector>

int execute(const std::string& command,
            const std::vector<std::string>& args,
            bool verbose = true);