MCPcopy Create free account
hub / github.com/TheRealMJP/DeferredTexturing / mz_zip_set_file_times

Function mz_zip_set_file_times

SampleFramework12/v1.00/TinyEXR.cpp:4415–4421  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4413
4414#ifndef MINIZ_NO_TIME
4415static mz_bool mz_zip_set_file_times(const char *pFilename, time_t access_time,
4416 time_t modified_time) {
4417 struct utimbuf t;
4418 t.actime = access_time;
4419 t.modtime = modified_time;
4420 return !utime(pFilename, &t);
4421}
4422#endif // #ifndef MINIZ_NO_TIME
4423#endif // #ifndef MINIZ_NO_STDIO
4424

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected