Revision b502aa4f45c9198ee498a09873f2c877911f23d7 authored by Junio C Hamano on 22 March 2018, 21:24:15 UTC, committed by Junio C Hamano on 22 March 2018, 21:24:15 UTC
Code clean-up.

* rb/hashmap-h-compilation-fix:
  hashmap.h: remove unused variable
2 parent s 9bcb489 + 7d68bb0
Raw File
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