30 #define IntStack_get_length(s) (1+(s)->last)
struct IntStack_struct * IntStack
IntStack IntStack_new(void)
int IntStack_pop(IntStack s, int *flag)
void IntStack_delete(IntStack s)
int IntStack_push(IntStack s, int i)
void IntStack_print(IntStack s)