| 969 | } |
| 970 | |
| 971 | void quicklistInsertAfter(quicklist *quicklist, quicklistEntry *entry, |
| 972 | void *value, const size_t sz) { |
| 973 | _quicklistInsert(quicklist, entry, value, sz, 1); |
| 974 | } |
| 975 | |
| 976 | /* Delete a range of elements from the quicklist. |
| 977 | * |
no test coverage detected