projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Implement normalize_absolute_path
[git]
/
test-path-utils.c
1
#include "cache.h"
2
3
int main(int argc, char **argv)
4
{
5
if (argc == 3 && !strcmp(argv[1], "normalize_absolute_path")) {
6
char *buf = xmalloc(strlen(argv[2])+1);
7
int rv = normalize_absolute_path(buf, argv[2]);
8
assert(strlen(buf) == rv);
9
puts(buf);
10
}
11
12
return 0;
13
}