git/test-index-version.c

15 lines
258 B
C
Raw Normal View History

#include "cache.h"
2013-04-27 19:19:47 +00:00
int main(int argc, char **argv)
{
struct cache_header hdr;
int version;
memset(&hdr,0,sizeof(hdr));
if (read(0, &hdr, sizeof(hdr)) != sizeof(hdr))
return 0;
version = ntohl(hdr.hdr_version);
printf("%d\n", version);
return 0;
}