| 293 | } |
| 294 | |
| 295 | string StripExtension(const char* path) |
| 296 | { |
| 297 | const char* s = strrchr(path, '.'); |
| 298 | if (s) |
| 299 | { |
| 300 | return string(path, s); |
| 301 | } |
| 302 | else |
| 303 | { |
| 304 | return string(path); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | string NormalizePath(const char* path) |
| 309 | { |
nothing calls this directly
no outgoing calls
no test coverage detected