1
0
mirror of https://github.com/git/git.git synced 2024-09-28 10:00:54 +02:00
git/progress.h

13 lines
370 B
C
Raw Normal View History

#ifndef PROGRESS_H
#define PROGRESS_H
struct progress;
int display_progress(struct progress *progress, unsigned n);
struct progress *start_progress(const char *title, unsigned total);
struct progress *start_progress_delay(const char *title, unsigned total,
unsigned percent_treshold, unsigned delay);
void stop_progress(struct progress **progress);
#endif