ftwin 0.8.10
ft_report.h
1#ifndef FT_REPORT_H
2#define FT_REPORT_H
3
4#include "ft_types.h"
5
13int ft_chksum_cmp(const void *chksum1, const void *chksum2);
14
19typedef struct reporting_colors_t
20{
21 const char *size;
22 const char *path;
23 const char *reset;
25
32apr_status_t ft_report_duplicates(ft_conf_t *conf);
33
34#endif /* FT_REPORT_H */
apr_status_t ft_report_duplicates(ft_conf_t *conf)
Reports duplicate files in text format to stdout.
Definition ft_report.c:100
int ft_chksum_cmp(const void *chksum1, const void *chksum2)
Comparison function for sorting checksums.
Definition ft_report.c:40
Main configuration structure for the ftwin application.
Definition ft_config.h:94
A struct to hold the ANSI color codes for reporting.
Definition ft_report.h:20