mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
14 lines
202 B
C
14 lines
202 B
C
|
#include "cache.h"
|
||
|
|
||
|
int main (int argc, char **argv)
|
||
|
{
|
||
|
int i, cnt = 1;
|
||
|
if (argc == 2)
|
||
|
cnt = strtol(argv[1], NULL, 0);
|
||
|
for (i = 0; i < cnt; i++) {
|
||
|
read_cache();
|
||
|
discard_cache();
|
||
|
}
|
||
|
return 0;
|
||
|
}
|