#include #include "stack1.h" struct Stack* createStack(void) { struct Stack* s = (struct Stack*)malloc(sizeof(struct Stack)); s->top = 0; return s; }