| 54 | #include <string.h> |
| 55 | |
| 56 | static char * sep() |
| 57 | { |
| 58 | #ifdef _WIN32 |
| 59 | return (char*)"\\"; |
| 60 | #else |
| 61 | return (char*)"/"; |
| 62 | #endif |
| 63 | } |
| 64 | |
| 65 | static std::string cache_path; |
| 66 | static bool cache_enabled(false); |
no outgoing calls
no test coverage detected