| 104 | } |
| 105 | |
| 106 | bool common_arg::has_value_from_env() { |
| 107 | return env != nullptr && std::getenv(env); |
| 108 | } |
| 109 | |
| 110 | static std::vector<std::string> break_str_into_lines(std::string input, size_t max_char_per_line) { |
| 111 | std::vector<std::string> result; |
no outgoing calls
no test coverage detected