| 213 | } |
| 214 | |
| 215 | std::string TempPath(const char *Prefix, const char *Extension) { |
| 216 | return DirPlusFile(TmpDir(), std::string("libFuzzerTemp.") + Prefix + |
| 217 | std::to_string(GetPid()) + Extension); |
| 218 | } |
| 219 | |
| 220 | } // namespace fuzzer |
no test coverage detected