Lines Matching refs:arg_list
36 struct arg_list { struct
38 struct arg_list *next; argument
117 static void freelist(struct arg_list *head) in freelist()
119 struct arg_list *tmp; in freelist()
131 static void append_user_input(struct arg_list **head, char *args) in append_user_input()
133 struct arg_list *tmp = *head; in append_user_input()
136 tmp = xzalloc(sizeof(struct arg_list), in append_user_input()
144 tmp->next = xzalloc(sizeof(struct arg_list), in append_user_input()
301 struct arg_list *in_head = NULL; in main()
302 struct arg_list *out_head = NULL; in main()
303 struct arg_list *in_list = NULL; in main()
304 struct arg_list *out_list = NULL; in main()