| 312 | } |
| 313 | |
| 314 | static const CmdStruct *FindCmd(std::string_view s) |
| 315 | { |
| 316 | auto it = std::ranges::find(_cmd_structs, s, &CmdStruct::cmd); |
| 317 | if (it != std::end(_cmd_structs)) return &*it; |
| 318 | return nullptr; |
| 319 | } |
| 320 | |
| 321 | static uint8_t ResolveCaseName(std::string_view str) |
| 322 | { |
no test coverage detected