Echo Writes Code

cli.hpp

1
2
3
4
5
6
7
8
9
#ifndef CRUCIBLE_TESTING_CLI_HPP
#define CRUCIBLE_TESTING_CLI_HPP

namespace crucible::testing::cli {
  [[nodiscard]]
  auto execute(int argc, char *argv[]) -> int;
}

#endif // CRUCIBLE_TESTING_CLI_HPP