Home | History | Annotate | Download | only in scripts

Lines Matching defs:new

27   char *n, *new, c;
33 n = new = strdup(all);
36 *(new++) = *(all++);
45 else *(new++) = 1;
47 *new = 0;
65 struct flag *new = calloc(sizeof(struct flag), 1);
67 new->command = ++string;
71 new->next = list->lopt;
72 list->lopt = new;
77 blank->lopt = new;
99 struct flag *new = calloc(sizeof(struct flag), 1);
101 new->command = string++;
102 new->next = list;
103 list = new;