swh:1:snp:6df5a50b8107b6bbe1e51d0239d816a7503c536a
Raw File
Tip revision: 3fe4498197ced84886b4adaddf18f1109b477f8e authored by Junio C Hamano on 03 June 2012, 22:56:05 UTC
Git 1.7.11-rc1
Tip revision: 3fe4498
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