Lines Matching defs:list
38 * toys.optargs[1] = NULL (end of list)
55 // * string argument, appended to a struct arg_list linked list.
95 // Linked list of all known options (option string parsed into this).
110 // linked list of long options. (Hangs off getoptflagstate, free at end of
199 struct arg_list **list;
201 list = (struct arg_list **)opt->arg;
202 while (*list) list=&((*list)->next);
203 *list = xzalloc(sizeof(struct arg_list));
204 (*list)->arg = arg;
229 // includes a struct opts linked list in reverse order (I.E. right-to-left)
253 // Parse option string into a linked list of options with attributes.
262 // Allocate a new list entry when necessary
327 // (This goes right to left so we need the whole list before we can start.)
387 // a struct opts list, then use that list to process argv[];