| 1069 | } |
| 1070 | |
| 1071 | static void pathsort(struct worktree **wt) |
| 1072 | { |
| 1073 | int n = 0; |
| 1074 | struct worktree **p = wt; |
| 1075 | |
| 1076 | while (*p++) |
| 1077 | n++; |
| 1078 | QSORT(wt, n, pathcmp); |
| 1079 | } |
| 1080 | |
| 1081 | static int list(int ac, const char **av, const char *prefix, |
| 1082 | struct repository *repo UNUSED) |