1#include "test-tool.h"
2#include "cache.h"
34
int cmd__index_version(int argc, const char **argv)
5{
6struct cache_header hdr;
7int version;
89
memset(&hdr,0,sizeof(hdr));
10if (read(0, &hdr, sizeof(hdr)) != sizeof(hdr))
11return 0;
12version = ntohl(hdr.hdr_version);
13printf("%d\n", version);
14return 0;
15}