| 172 | */ |
| 173 | |
| 174 | void *pop_dynamic(DYNAMIC_ARRAY *array) |
| 175 | { |
| 176 | if (array->elements) |
| 177 | return array->buffer+(--array->elements * array->size_of_element); |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | /* |
| 182 | Replace element in array with given element and index |
no outgoing calls
no test coverage detected