10void PtrLst_free(
PtrLst *self);
11int PtrLst_push(
PtrLst *self,
void *ptr);
13long unsigned PtrLst_length(
PtrLst *self);
14void PtrLst_rewind(
PtrLst *self);
15void *PtrLst_next(
PtrLst *self);
void * PtrLst_pop(PtrLst *self)
Remove next pointer from list and return it.
Definition: ptrlst.c:85
PtrLst * PtrLst_new(void)
Allocate a structure to hold a linked list.
Definition: ptrlst.c:63
A linked list of pointers.
Definition: ptrlst.c:22