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.
Possibly clearlist() rmlist() then you can handle your stack appropriately.
The reason behind handling your list is that you have a stack built upon a list, if you don't want a stack why do you want a list?
Stack *pop (Stack *, Node **);
As stacks are always manipulated from the top you'll want:
So long as your stack top isn't NULL that is
Stack *push (Stack *, Node *);
The act of pushing to a stack is placing whatever thing you have back to the top of the stack.
Whether you need to use insert() or append() as long as it is appropriately adding to the top of your stack you'll be fine
Of course reassign myStack→top to your new top.