Merge branch 'jc/t3404-one-shot-export-fix' into es/test-lint-one-shot-export
[git/debian.git] / progress.h
blob70a4d4a0d66ebda2423acf4b5dc84ba485a874b8
1 #ifndef PROGRESS_H
2 #define PROGRESS_H
4 struct progress;
6 void display_throughput(struct progress *progress, uint64_t total);
7 int display_progress(struct progress *progress, uint64_t n);
8 struct progress *start_progress(const char *title, uint64_t total);
9 struct progress *start_delayed_progress(const char *title, uint64_t total);
10 void stop_progress(struct progress **progress);
11 void stop_progress_msg(struct progress **progress, const char *msg);
13 #endif