]> git.ipfire.org Git - thirdparty/git.git/blame - progress.h
t4034: abstract away SHA-1-specific constants
[thirdparty/git.git] / progress.h
CommitLineData
e0173ad9
JH
1#ifndef PROGRESS_H
2#define PROGRESS_H
96a02f8f 3
dc6a0757 4struct progress;
96a02f8f 5
d6861d02 6void display_throughput(struct progress *progress, uint64_t total);
9219d127 7void display_progress(struct progress *progress, uint64_t n);
d6861d02 8struct progress *start_progress(const char *title, uint64_t total);
9d81ecb5 9struct progress *start_sparse_progress(const char *title, uint64_t total);
d6861d02 10struct progress *start_delayed_progress(const char *title, uint64_t total);
9d81ecb5
JH
11struct progress *start_delayed_sparse_progress(const char *title,
12 uint64_t total);
dc6a0757 13void stop_progress(struct progress **progress);
a984a06a 14void stop_progress_msg(struct progress **progress, const char *msg);
96a02f8f
NP
15
16#endif