Staging
v0.5.1
https://github.com/git/git
Revision df5be6dc3fd18c294ec93a9af0321334e3f92c9c authored by Jeff King on 19 April 2020, 06:34:55 UTC, committed by Jonathan Nieder on 19 April 2020, 23:10:58 UTC
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
1 parent 1a3609e
Raw File
Tip revision: df5be6dc3fd18c294ec93a9af0321334e3f92c9c authored by Jeff King on 19 April 2020, 06:34:55 UTC
Git 2.17.5
Tip revision: df5be6d
progress.h
#ifndef PROGRESS_H
#define PROGRESS_H

struct progress;

void display_throughput(struct progress *progress, uint64_t total);
int display_progress(struct progress *progress, uint64_t n);
struct progress *start_progress(const char *title, uint64_t total);
struct progress *start_delayed_progress(const char *title, uint64_t total);
void stop_progress(struct progress **progress);
void stop_progress_msg(struct progress **progress, const char *msg);

#endif
back to top