| 4131 | return pFile; |
| 4132 | } |
| 4133 | static FILE *mz_freopen(const char *pPath, const char *pMode, FILE *pStream) { |
| 4134 | FILE *pFile = NULL; |
| 4135 | if (freopen_s(&pFile, pPath, pMode, pStream)) |
| 4136 | return NULL; |
| 4137 | return pFile; |
| 4138 | } |
| 4139 | #ifndef MINIZ_NO_TIME |
| 4140 | #include <sys/utime.h> |
| 4141 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected