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