https://github.com/git/git
Raw File
Tip revision: ab15ad1a3b4b04a29415aef8c9afa2f64fc194a2 authored by Junio C Hamano on 13 May 2019, 14:40:13 UTC
Git 2.22-rc0
Tip revision: ab15ad1
progress.h
#ifndef PROGRESS_H
#define PROGRESS_H

struct progress;

void display_throughput(struct progress *progress, uint64_t total);
void display_progress(struct progress *progress, uint64_t n);
struct progress *start_progress(const char *title, uint64_t total);
struct progress *start_sparse_progress(const char *title, uint64_t total);
struct progress *start_delayed_progress(const char *title, uint64_t total);
struct progress *start_delayed_sparse_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