Home | History | Annotate | Download | only in rpcgen

Lines Matching defs:lst

107 findval(list *lst, const char *val, int (*cmp)(definition *, const char *))
110 for (; lst != NULL; lst = lst->next) {
111 if ((*cmp) (lst->val, val)) {
112 return (lst->val);
124 list *lst;
128 lst = ALLOC(list);
129 lst->val = val;
130 lst->next = NULL;
131 *l = lst;