#include "node.h" typedef struct Stack_type Stack; struct Stack_type{ Node* top; int size; }; Stack* createStack(); void push(Stack* stack, int item); int pop(Stack* stack); int peek(Stack* stack); int size(Stack* stack);