fdupes.h (fdupes-2.1.0) | : | fdupes.h (fdupes-2.1.1) | ||
---|---|---|---|---|
skipping to change at line 35 | skipping to change at line 35 | |||
#include <sys/stat.h> | #include <sys/stat.h> | |||
#include "md5/md5.h" | #include "md5/md5.h" | |||
typedef struct _file { | typedef struct _file { | |||
char *d_name; | char *d_name; | |||
off_t size; | off_t size; | |||
md5_byte_t *crcpartial; | md5_byte_t *crcpartial; | |||
md5_byte_t *crcsignature; | md5_byte_t *crcsignature; | |||
dev_t device; | dev_t device; | |||
ino_t inode; | ino_t inode; | |||
time_t sorttime; | time_t mtime; | |||
time_t ctime; | ||||
int hasdupes; /* true only if file is first on duplicate chain */ | int hasdupes; /* true only if file is first on duplicate chain */ | |||
struct _file *duplicates; | struct _file *duplicates; | |||
struct _file *next; | struct _file *next; | |||
} file_t; | } file_t; | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added |