Staging
v0.5.1
https://github.com/git/git
Revision 74f6b03c5c8fceef416de9f9a18e5d64712b6d96 authored by Junio C Hamano on 20 December 2007, 01:21:04 UTC, committed by Junio C Hamano on 20 December 2007, 01:24:04 UTC
It's been a week since -rc0, and we have quite a lot of fixes,
so here it is.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent dbedf97
Raw File
Tip revision: 74f6b03c5c8fceef416de9f9a18e5d64712b6d96 authored by Junio C Hamano on 20 December 2007, 01:21:04 UTC
GIT 1.5.4-rc1
Tip revision: 74f6b03
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