Create an iterator in the list private iterator structure */
| 204 | |
| 205 | /* Create an iterator in the list private iterator structure */ |
| 206 | void listRewind(list *list, listIter *li) { |
| 207 | li->next = list->head; |
| 208 | li->direction = AL_START_HEAD; |
| 209 | } |
| 210 | |
| 211 | void listRewindTail(list *list, listIter *li) { |
| 212 | li->next = list->tail; |
no outgoing calls
no test coverage detected