Lines Matching refs:item
55 struct item *add_item(); in read_rules()
56 struct item *fitem, *sitem; in read_rules()
60 gign_hd.i_next = (struct item *)0; in read_rules()
62 list_hd.i_next = (struct item *)0; in read_rules()
79 if (lign_hd.i_next != (struct item *)0) { in read_rules()
93 if (fitem != (struct item *)0) { in read_rules()
94 while (fitem != (struct item *)0) { in read_rules()
105 if (fitem != (struct item *)0) { in read_rules()
106 while (fitem != (struct item *)0) { in read_rules()
113 last_gign->i_next = (struct item *)0; in read_rules()
121 list_hd.i_next = (struct item *)0; in read_rules()
124 lign_hd.i_next = (struct item *)0; in read_rules()
226 if (lign_hd.i_next != (struct item *)0) { in read_rules()
232 struct item *
233 add_item(struct item *last_item, char *str, int flags) in add_item()
235 struct item * add_cmd_items(); in add_item()
240 last_item->i_next = (struct item *)mmalloc( in add_item()
241 sizeof (struct item)); in add_item()
245 last_item->i_next = (struct item *)0; in add_item()
250 struct item *
251 add_cmd_items(struct item *last_item, char *str, int flags) in add_cmd_items()