00001 /* MAIN.C */ 00002 00003 static void program_info(void); 00004 /* 00005 * This function prints some program information 00006 */ 00007 00008 static void main_loop(void); 00009 /* 00010 * This function loops until the user quits 00011 */ 00012 00013 static void cleanup(void); 00014 /* 00015 * This function closes any open files and all the strutures 00016 */ 00017 00018 void sig_int(); 00019 /* 00020 * This function prints out an error and exits 00021 */ 00022 00023 void sig_quit(); 00024 /* 00025 * This function prints out an error and exits 00026 */