Staging
v0.8.1
Revision e449f105805ffa49ccf7cf080db897ecf65a1a0f authored by Junio C Hamano on 18 June 2008, 20:09:43 UTC, committed by Junio C Hamano on 18 June 2008, 20:09:43 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 9a7bbd1
Raw File
test-absolute-path.c
#include "cache.h"

int main(int argc, char **argv)
{
	while (argc > 1) {
		puts(make_absolute_path(argv[1]));
		argc--;
		argv++;
	}
	return 0;
}
back to top