1 /* jdupes action for OS-specific block-level or CoW deduplication
2  * This file is part of jdupes; see jdupes.c for license information */
3 
4 #ifndef ACT_DEDUPEFILES_H
5 #define ACT_DEDUPEFILES_H
6 
7 #ifdef __cplusplus
8 extern "C" {
9 #endif
10 
11 #include "jdupes.h"
12 extern void dedupefiles(file_t * restrict files);
13 
14 #ifdef __cplusplus
15 }
16 #endif
17 
18 #endif /* ACT_DEDUPEFILES_H */
19