This is an old revision of the document!
struct Stack { Node *top; List *data; int size; };
Stack *mkstack (int);
The guts of your mkstack function should be relatively simple, including but not limited to:
Stack *rmstack (Stack *);
Much like rmlist from previous adventures.
You may want to run a few functions to handle the underlying list prior to handling the stack, as in this case the stack is built upon the list.
We don't want a list if we don't want a stack
Stack *pop (Stack *, Node **);
Stack *push (Stack *, Node *);