File: act_printmatches.h

package info (click to toggle)
jdupes 1.12-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,048 kB
  • sloc: ansic: 5,766; makefile: 100; sh: 91; xml: 9
file content (18 lines) | stat: -rw-r--r-- 359 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* jdupes action for printing matched file sets to stdout
 * This file is part of jdupes; see jdupes.c for license information */

#ifndef ACT_PRINTMATCHES_H
#define ACT_PRINTMATCHES_H

#ifdef __cplusplus
extern "C" {
#endif

#include "jdupes.h"
extern void printmatches(file_t * restrict files);

#ifdef __cplusplus
}
#endif

#endif /* ACT_PRINTMATCHES_H */