| 2418 | } |
| 2419 | |
| 2420 | void index_state_init(struct index_state *istate, struct repository *r) |
| 2421 | { |
| 2422 | struct index_state blank = INDEX_STATE_INIT(r); |
| 2423 | memcpy(istate, &blank, sizeof(*istate)); |
| 2424 | } |
| 2425 | |
| 2426 | void release_index(struct index_state *istate) |
| 2427 | { |
no outgoing calls
no test coverage detected