Staging
v0.5.1
Revision 005e2dfdf299a7d869fa9ec819171fba574f42eb authored by Junio C Hamano on 18 November 2007, 22:00:38 UTC, committed by Junio C Hamano on 18 November 2007, 22:00:38 UTC
1 parent 4b87474
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