| 19 | } |
| 20 | |
| 21 | std::string GetArgumentName(const std::string& name) |
| 22 | { |
| 23 | size_t idx = name.find('='); |
| 24 | if (idx == std::string::npos) { |
| 25 | idx = name.size(); |
| 26 | } |
| 27 | return name.substr(0, idx); |
| 28 | } |
| 29 | |
| 30 | FUZZ_TARGET_INIT(system, initialize_system) |
| 31 | { |
no test coverage detected