| 222 | /* Given a path to a file, return the last time it was accessed (in seconds) */ |
| 223 | time_t getLastModifiedTime(const char* path){ |
| 224 | struct stat path_stat; |
| 225 | stat(path, &path_stat); |
| 226 | |
| 227 | #ifdef __APPLE__ |
no outgoing calls
no test coverage detected