#include typedef struct stack stack; typedef struct stack { char *tape; int len; char *ptr; } stack; stack *push(stack *s, char c); char pop(stack *s); char peek(stack *s); void cleanstack(stack *s);