| 136 | }; |
| 137 | |
| 138 | std::vector<std::string> readFunctionNamesFromFile( |
| 139 | const std::string& filePath) { |
| 140 | std::ifstream functions("data/" + filePath); |
| 141 | |
| 142 | std::vector<std::string> names; |
| 143 | std::string name; |
| 144 | while (getline(functions, name)) { |
| 145 | names.emplace_back(name); |
| 146 | } |
| 147 | |
| 148 | functions.close(); |
| 149 | return names; |
| 150 | } |
| 151 | |
| 152 | std::string toFuncLink( |
| 153 | const std::string& name, |
no test coverage detected