| 2016 | } |
| 2017 | |
| 2018 | void commit_stack_init(struct commit_stack *stack) |
| 2019 | { |
| 2020 | stack->items = NULL; |
| 2021 | stack->nr = stack->alloc = 0; |
| 2022 | } |
| 2023 | |
| 2024 | void commit_stack_grow(struct commit_stack *stack, size_t extra) |
| 2025 | { |
no outgoing calls
no test coverage detected