Lines Matching defs:stack
61 static struct stack {
65 struct stack *next;
66 } *stack, initialStack = { 0, 0, 4, NULL };
84 struct stack *new = dmxConfigAlloc(sizeof(*new));
88 new->next = stack;
89 stack = new;
96 if (stack) indent = stack->comment;
101 if (stack) indent = stack->step;
106 struct stack *old = stack;
108 if (!stack) return;
110 stack = old->next;
111 if (!stack) dmxConfigLog("Stack underflow\n");
430 stack = &initialStack;
451 stack = &initialStack;