#include #include #include "stack312_ll.h" void makeStack(Stack312 *s) { s->top = NULL; } bool isFull(Stack312 s) { return false; } bool isEmpty(Stack312 s){ return (s.top == NULL); } void push(StackEntry e,Stack312 *s) { } StackEntry pop(Stack312 *s) { }