Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 53cdd4e1b2017a7580d0c4b7f530f0678985c8dc authored by Junio C Hamano on 28 January 2013, 19:17:54 UTC
Git 1.8.1.2
Tip revision: 53cdd4e
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