information
support
This is an old revision of the document!
struct Stack { Node *top; List *data; int size; };
Stack *mkstack (int);
Stack *rmstack (Stack *);
Stack *pop (Stack *, Node **);
Stack *push (Stack *, Node *);