#ifndef PLOC_GEN_IO_H #define PLOC_GEN_IO_H #include "pattern/pattern.h" /* * Print parameters. */ struct print_params { unsigned int count; /* * aggregated is true, if the print function gets called on the * same file over and over again. */ bool aggregated; bool print_count; bool print_code; bool print_author; }; void pattern_nums_to_str(char *str, struct pattern *pattern); #endif