| 160 | */ |
| 161 | |
| 162 | int file_time( OBJECT * const path, timestamp * const time ) |
| 163 | { |
| 164 | file_info_t const * const ff = file_query( path ); |
| 165 | if ( !ff ) return -1; |
| 166 | timestamp_copy( time, &ff->time ); |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | |
| 171 | /* |
no test coverage detected