
#include "llist.h"

typedef struct Stack stack;

struct Stack {
    llist L;
};

void init_stack(stack *S);
int stack_empty(stack *S);
void push(stack *S, int x);
int pop(stack *S);
void print_stack(stack *S);
