Staging
v0.5.1
https://github.com/git/git
Revision e636106c76e0273334940d899de1c928d08b29e8 authored by Junio C Hamano on 26 June 2008, 00:09:40 UTC, committed by Junio C Hamano on 26 June 2008, 00:13:48 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent df79b9f
Raw File
Tip revision: e636106c76e0273334940d899de1c928d08b29e8 authored by Junio C Hamano on 26 June 2008, 00:09:40 UTC
GIT 1.5.6.1
Tip revision: e636106
progress.h
#ifndef PROGRESS_H
#define PROGRESS_H

struct progress;

void display_throughput(struct progress *progress, off_t total);
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);
void stop_progress_msg(struct progress **progress, const char *msg);

#endif
back to top