Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: ce33288ea6b81a2f4f5aecd72177bcc8174562ae authored by Junio C Hamano on 21 January 2008, 01:04:53 UTC
GIT 1.5.4-rc4
Tip revision: ce33288
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