repo.or.cz
/
k8jam.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed broken header scanner
[k8jam.git]
/
src
/
progress.h
blob
1552b2b9dbb9e5df29e2f98df2500501401d9df2
1
#ifndef JAMH_PROGRESS_H
2
#define JAMH_PROGRESS_H
3
4
5
struct
_PROGRESS
;
6
typedef
struct
_PROGRESS PROGRESS
;
7
8
9
extern
PROGRESS
*
progress_start
(
int
total
);
10
extern
double
progress_update
(
PROGRESS
*
progress
,
int
completed
);
11
12
13
#endif