repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
git-describe: use tags found in packed-refs correctly
[git.git]
/
test-absolute-path.c
blob
c959ea20d31c205aa1afacd2312dbf190ff22695
1
#include
"cache.h"
2
3
int
main
(
int
argc
,
char
**
argv
)
4
{
5
while
(
argc
>
1
) {
6
puts
(
make_absolute_path
(
argv
[
1
]));
7
argc
--;
8
argv
++;
9
}
10
return
0
;
11
}