| 4413 | |
| 4414 | #ifndef MINIZ_NO_TIME |
| 4415 | static 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 |
no outgoing calls
no test coverage detected