| 33 | /* Bump */ |
| 34 | |
| 35 | struct hc_bump_alloc { |
| 36 | struct hc_malloc malloc; |
| 37 | struct hc_malloc *source; |
| 38 | size_t size, offset; |
| 39 | uint8_t *memory; |
| 40 | }; |
| 41 | |
| 42 | void hc_bump_alloc_init(struct hc_bump_alloc *a, |
| 43 | struct hc_malloc *source, |
nothing calls this directly
no outgoing calls
no test coverage detected