Sign in
googlers
/
jrn
/
git
/
a40e06ee336d608cfe0928d91d2b44112d8fd1e2
/
.
/
t
/
helper
/
test-read-cache.c
blob: 48255eef31a1e83d9a2bbb01670ba089a11c91f8 [
file
] [
log
] [
blame
]
#include
"cache.h"
int
cmd_main
(
int
argc
,
const
char
**
argv
)
{
int
i
,
cnt
=
1
;
if
(
argc
==
2
)
cnt
=
strtol
(
argv
[
1
],
NULL
,
0
);
setup_git_directory
();
for
(
i
=
0
;
i
<
cnt
;
i
++)
{
read_cache
();
discard_cache
();
}
return
0
;
}