| 59 | } |
| 60 | |
| 61 | static void display_version(void) |
| 62 | { |
| 63 | printf("QPhotoRec %s, Data Recovery Utility, %s\nChristophe GRENIER <grenier@cgsecurity.org>\nhttps://www.cgsecurity.org\n",VERSION,TESTDISKDATE); |
| 64 | printf("\n"); |
| 65 | printf("Version: %s\n", VERSION); |
| 66 | printf("Compiler: %s\n", get_compiler()); |
| 67 | #ifdef RECORD_COMPILATION_DATE |
| 68 | printf("Compilation date: %s\n", get_compilation_date()); |
| 69 | #endif |
| 70 | printf("ext2fs lib: %s, ntfs lib: %s, ewf lib: %s, libjpeg: %s\n", |
| 71 | td_ext2fs_version(), td_ntfs_version(), td_ewf_version(), td_jpeg_version()); |
| 72 | printf("OS: %s\n" , get_os()); |
| 73 | } |
| 74 | |
| 75 | int main(int argc, char *argv[]) |
| 76 | { |
no test coverage detected