typedef struct stack_item { /* Contents of an item on the input stack */ stack_ptr prior_item; /* Pointer to prior item */ stack_ptr prior_type; /* Pointer to prior type */ item_contents item_value; /* The value of the item */