4c6d53524b5ebc6bec4fd4c569776802816dfdbc
   1#ifndef PROGRESS_H
   2#define PROGRESS_H
   3
   4struct progress;
   5
   6int 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,
   9                                       unsigned percent_treshold, unsigned delay);
  10void stop_progress(struct progress **progress);
  11
  12#endif