| 39 | } |
| 40 | |
| 41 | const char* __GetConstFileBaseName(const char* file) { |
| 42 | const char* base = strrchr(file, '/'); |
| 43 | if (!base) { |
| 44 | base = strrchr(file, '\\'); |
| 45 | } |
| 46 | return base ? (base + 1) : file; |
| 47 | } |
| 48 | |
| 49 | bool __CheckOptionImpl(const char* file, |
| 50 | const int line, |
no outgoing calls
no test coverage detected