46 std::vector<std::string>
vectorize(
int argc,
char ** argv);
68 std::vector<std::string>
vectorize(
int argc,
char ** argv) {
69 std::vector<std::string> result;
71 for(
int n{}; n < argc; ++n) {
72 result.emplace_back(argv[n]);
std::vector< std::string > vectorize(int argc, char **argv)
Vectorizes the given arguments to the program.
Definition: main.hpp:68
The global namespace of crawlserv++.