Home | History | Annotate | Download | only in rdist

Lines Matching refs:nc

373 	struct cmd *c, *prev, *nc;
395 nc = ALLOC(cmd);
396 if (nc == NULL)
398 nc->c_type = ARROW;
399 nc->c_name = h->n_name;
400 nc->c_label = label;
401 nc->c_files = files;
402 nc->c_cmds = subcmds;
403 nc->c_next = c;
405 cmds = nc;
407 prev->c_next = nc;
408 /* update last_cmd if appending nc to cmds */
410 last_cmd = nc;