| 62 | } state = { lib }; |
| 63 | |
| 64 | dl_iterate_phdr([](struct dl_phdr_info* info, size_t, void* data) -> int { |
| 65 | auto* s = static_cast<State*>(data); |
| 66 | if (info->dlpi_name && strstr(info->dlpi_name, s->needle)) { |
| 67 | struct stat st{}; |
nothing calls this directly
no outgoing calls
no test coverage detected