Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-absolute-path.c - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c959ea20d31c205aa1afacd2312dbf190ff22695 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "cache.h"

int main(int argc, char **argv)
{
	while (argc > 1) {
		puts(make_absolute_path(argv[1]));
		argc--;
		argv++;
	}
	return 0;
}