42e18fbf5f
Each progress can be on a single line instead of two. [sp: Changed "Checking files out" to "Checking out files" at Johannes Sixt's suggestion as it better explains the action that is taking place] Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
21 lines
534 B
C
21 lines
534 B
C
#ifndef PROGRESS_H
|
|
#define PROGRESS_H
|
|
|
|
struct progress {
|
|
const char *title;
|
|
int last_value;
|
|
unsigned total;
|
|
unsigned last_percent;
|
|
unsigned delay;
|
|
unsigned delayed_percent_treshold;
|
|
};
|
|
|
|
int display_progress(struct progress *progress, unsigned n);
|
|
void start_progress(struct progress *progress, const char *title,
|
|
unsigned total);
|
|
void start_progress_delay(struct progress *progress, const char *title,
|
|
unsigned total, unsigned percent_treshold, unsigned delay);
|
|
void stop_progress(struct progress *progress);
|
|
|
|
#endif
|