#include "newgeo.h" void clear_screen(display_files) /*============================================================================*/ /* PURPOSE: CLEAR THE SCREEN AND POSSIBLY DISPLAY INPUT/OUTPUT FILES. */ int display_files; /* FLAG; DISPLAY FILES AT TOP OF SCREEN. */ { system("clear"); /* CLEAR SCREEN. */ if (display_files) printf("Currently processing \"%s\" into \"%s\"\n",input_file_name,output_file_name); return; }