1
0
mirror of https://github.com/git/git.git synced 2024-09-23 14:26:36 +02:00
git/progress.h

21 lines
534 B
C
Raw Normal View History

#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