File: act_summarize.h

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

#ifndef ACT_SUMMARIZE_H
#define ACT_SUMMARIZE_H

#ifdef __cplusplus
extern "C" {
#endif

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

#ifdef __cplusplus
}
#endif

#endif /* ACT_SUMMARIZE_H */