| 3816 | }; |
| 3817 | |
| 3818 | static int tree_entry_order(const void *a_, const void *b_) |
| 3819 | { |
| 3820 | const struct string_list_item *a = a_; |
| 3821 | const struct string_list_item *b = b_; |
| 3822 | |
| 3823 | const struct merged_info *ami = a->util; |
| 3824 | const struct merged_info *bmi = b->util; |
| 3825 | return base_name_compare(a->string, strlen(a->string), ami->result.mode, |
| 3826 | b->string, strlen(b->string), bmi->result.mode); |
| 3827 | } |
| 3828 | |
| 3829 | static int write_tree(struct repository *repo, |
| 3830 | struct object_id *result_oid, |
nothing calls this directly
no test coverage detected