Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 74f6b03c5c8fceef416de9f9a18e5d64712b6d96 authored by Junio C Hamano on 20 December 2007, 01:21:04 UTC
GIT 1.5.4-rc1
Tip revision: 74f6b03
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