| 725 | } |
| 726 | |
| 727 | unsigned commit_list_count(const struct commit_list *l) |
| 728 | { |
| 729 | unsigned c = 0; |
| 730 | for (; l; l = l->next ) |
| 731 | c++; |
| 732 | return c; |
| 733 | } |
| 734 | |
| 735 | struct commit_list *commit_list_copy(const struct commit_list *list) |
| 736 | { |
no outgoing calls
no test coverage detected