Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 781c1834f5419bdf81bb7f3750170ccd6b809174 authored by Junio C Hamano on 06 August 2008, 19:04:06 UTC
GIT 1.5.6.5
Tip revision: 781c183
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