Lines Matching refs:tmp
119 struct arg_list *tmp; in freelist() local
122 tmp = head; in freelist()
124 free(tmp); in freelist()
133 struct arg_list *tmp = *head; in append_user_input() local
135 if (tmp == NULL) { in append_user_input()
136 tmp = xzalloc(sizeof(struct arg_list), in append_user_input()
138 tmp->usr_input = args; in append_user_input()
139 *head = tmp; in append_user_input()
141 while (tmp->next != NULL) { in append_user_input()
142 tmp = tmp->next; in append_user_input()
144 tmp->next = xzalloc(sizeof(struct arg_list), in append_user_input()
146 tmp = tmp->next; in append_user_input()
147 tmp->usr_input = args; in append_user_input()