Staging
v0.5.1
Revision 1467b5fec376b6c43a5fa54bffd356e458a8d57c authored by Junio C Hamano on 15 August 2007, 06:52:36 UTC, committed by Junio C Hamano on 15 August 2007, 07:01:57 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 1a9d7e9
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