| 23 | } |
| 24 | |
| 25 | bool plausible_comm(const std::string& comm) { |
| 26 | if (comm.empty() || comm.size() > 15) return false; |
| 27 | return std::all_of(comm.begin(), comm.end(), [](unsigned char c) { |
| 28 | return c >= 0x20 && c < 0x7f; |
| 29 | }); |
| 30 | } |
| 31 | |
| 32 | Offsets gather_offsets(const IsfSymbols& isf) { |
| 33 | Offsets o{}; |