
#include "StackElement.h"

struct stackCell
 { StackElementType elt;
   struct stackCell *tl;
 };
typedef struct stackCell StackCell;

typedef StackCell *Stack;

/* Stack Implemented by Linked List */
