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