practice_greedyTextJustific.../cpp_impl/src/argparse.hpp
2021-05-10 14:16:10 +09:00

12 lines
277 B
C++

#ifndef GREEDY_TEXT_JUSTIFICATION_ARG_PARSE_HPP
#define GREEDY_TEXT_JUSTIFICATION_ARG_PARSE_HPP
#include <string>
#include <unordered_map>
namespace ArgParse {
std::unordered_map<std::string, std::string> parseArgs(int argc, char **argv);
} // namespace ArgParse
#endif