Home | History | Annotate | Download | only in scripts

Lines Matching defs:new

25   char *n, *new, c;
31 n = new = strdup(all);
34 *(new++) = *(all++);
43 else *(new++) = 1;
45 *new = 0;
63 struct flag *new = calloc(sizeof(struct flag), 1);
65 new->command = ++string;
69 new->next = list->lopt;
70 list->lopt = new;
75 blank->lopt = new;
97 struct flag *new = calloc(sizeof(struct flag), 1);
99 new->command = string++;
100 new->next = list;
101 list = new;