File: progress.h

package info (click to toggle)
skiboot 6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 16,572 kB
  • sloc: ansic: 114,759; cpp: 5,501; sh: 2,203; asm: 1,254; tcl: 884; python: 582; makefile: 519; pascal: 66
file content (10 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef __PROGRESS_H
#define __PROGRESS_H

#include <inttypes.h>

void progress_init(uint64_t count);
void progress_tick(uint64_t cur);
void progress_end(void);

#endif /* __PROGRESS_H */