00001 #include <stdbool.h> /* C99 only */ 00002 #define STACK_SIZE 100 00003 /* external variables */ 00004 int contents[STACK_SIZE]; 00005 int top = 0; 00006 void make_empty(void) { 00007 top = 0; 00008 } 00009 bool is_empty(void){ 00010 return top == 0; 00011 } 00012