Searched defs:lst (Results 1 - 1 of 1) sorted by relevance

/pkg/src/modules/
H A Dliblist.c51 liblist_free(liblist_t *lst) argument
53 if (!lst)
56 libnode_t *n = lst->head;
66 free(lst);
70 liblist_add(liblist_t *lst, off_t off) argument
74 if (!lst)
86 if (!lst->head) {
87 lst->head = n;
88 lst->tail = n;
90 lst
98 liblist_foreach(liblist_t *lst, int (*cb)(libnode_t *, void *, void *), void *info, void *info2) argument
116 liblist_copy(liblist_t *lst) argument
159 liblist_t *lst = (liblist_t *)info; local
[all...]

Completed in 158 milliseconds