/* * ISA 563, Spring 2011 * Copyleft by Muhammad Abdulla */ #ifndef STACK2_INCLUDED #define STACK2_INCLUDED void stack_push(int item); int stack_pop(); int stack_empty(); int stack_full(); #endif // STACK2_INCLUDED