| 370 | }; |
| 371 | |
| 372 | static void add_file_item(struct string_list *files, const char *name) |
| 373 | { |
| 374 | struct file_item *item = xcalloc(1, sizeof(*item)); |
| 375 | |
| 376 | string_list_append(files, name)->util = item; |
| 377 | } |
| 378 | |
| 379 | struct pathname_entry { |
| 380 | struct hashmap_entry ent; |
no test coverage detected