#ifndef STACK_H #define STACK_H #include #include #include // We will create a stack of Node elements // Each element will hold one integer value typedef struct node { int value; struct node *next; } Node; /* * The interface of the stack module */ void spush(Node **top, int value); int spop(Node **top); bool sis_empty(Node *top); void sprint(Node *top); #endif