1#ifndef PROGRESS_H2#define PROGRESS_H34struct progress;56int display_progress(struct progress *progress, unsigned n);7struct progress *start_progress(const char *title, unsigned total);8struct progress *start_progress_delay(const char *title, unsigned total,9unsigned percent_treshold, unsigned delay);10void stop_progress(struct progress **progress);1112#endif