Staging
v0.5.1
swh:1:snp:c5feb7ee9221a3820c8879e85e8a18470c0b3afa
Raw File
Tip revision: e923eaeb901ff056421b9007adcbbce271caa7b6 authored by Junio C Hamano on 12 February 2010, 23:45:05 UTC
Git 1.7.0
Tip revision: e923eae
test-index-version.c
#include "cache.h"

int main(int argc, const 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;
}
back to top