codex
Loading...
Searching...
No Matches
exec.hpp
Go to the documentation of this file.
1#ifndef CODEX_GIT_REBASE_EXEC_H
2#define CODEX_GIT_REBASE_EXEC_H
3
4#include <span>
5#include <string>
6#include <system_error>
7#include <tuple>
8
9namespace codex {
10
12std::tuple<int, std::errc> exec(
13 std::span<const char *const> args, std::string *out);
14
15}
16
17#endif
Definition rotate.hpp:6
std::tuple< int, std::errc > exec(std::span< const char *const >, std::string *)
Executes a command and reads its stdout.
Definition exec.cpp:8