https://github.com/git/git
Raw File
Tip revision: 9dfdf14b3805e89aa2782458bda15b3dfae24c09 authored by Junio C Hamano on 15 July 2007, 23:41:17 UTC
GIT v1.5.3-rc2
Tip revision: 9dfdf14
progress.h
#ifndef PROGRESS_H
#define PROGRESS_H

struct progress {
	const char *prefix;
	unsigned total;
	unsigned last_percent;
	unsigned delay;
	unsigned delayed_percent_treshold;
	const char *delayed_title;
	int need_lf;
};

int display_progress(struct progress *progress, unsigned n);
void start_progress(struct progress *progress, const char *title,
		    const char *prefix, unsigned total);
void start_progress_delay(struct progress *progress, const char *title,
			  const char *prefix, unsigned total,
			  unsigned percent_treshold, unsigned delay);
void stop_progress(struct progress *progress);

#endif
back to top