| 340 | } |
| 341 | |
| 342 | int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data) |
| 343 | { |
| 344 | int i, ret; |
| 345 | for (i = ret = 0; i < the_repository->parsed_objects->grafts_nr && !ret; i++) |
| 346 | ret = fn(the_repository->parsed_objects->grafts[i], cb_data); |
| 347 | return ret; |
| 348 | } |
| 349 | |
| 350 | struct commit_buffer { |
| 351 | void *buffer; |
no outgoing calls
no test coverage detected