| 265 | } |
| 266 | |
| 267 | string SanitizePath(string_view path) { |
| 268 | string r; |
| 269 | for (auto c : path) { |
| 270 | r += c == '\\' || c == '/' ? FILESEP : c; |
| 271 | } |
| 272 | return r; |
| 273 | } |
| 274 | |
| 275 | map<string, tuple<string, int64_t, int64_t, int64_t>, less<>> pakfile_registry; |
| 276 |
no outgoing calls
no test coverage detected