1
0
mirror of https://github.com/git/git.git synced 2024-09-23 08:21:16 +02:00
git/progress.h
Nicolas Pitre 42e18fbf5f more compact progress display
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>
2007-10-17 02:54:55 -04:00

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