File: find_dupes.h

package info (click to toggle)
duperemove 0.11.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 844 kB
  • sloc: ansic: 11,586; makefile: 110
file content (13 lines) | stat: -rw-r--r-- 354 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef	__FIND_DUPES_H__
#define	__FIND_DUPES_H__

/* from duperemove.c */
extern int stdout_is_tty;
extern int do_lookup_extents;
extern unsigned int blocksize;

int find_all_dupes(struct hash_tree *tree, struct results_tree *res);
int find_additional_dedupe(struct hash_tree *hashes,
			   struct results_tree *extents);

#endif	/* __FIND_DUPES_H__ */