Staging
v0.5.1
Revision 218bf69f0b137e0a21cfeeda6ba81947f220401f authored by Junio C Hamano on 07 June 2008, 20:05:34 UTC, committed by Junio C Hamano on 07 June 2008, 20:05:34 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent dceab83
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