00001 /********************************************************************** 00002 * 00003 * G_clear_screen() 00004 * 00005 * clears the terminal screen 00006 * 00007 **********************************************************************/ 00008 #include <stdlib.h> 00009 #include <grass/gis.h> 00010 00011 int G_clear_screen() 00012 { 00013 system ("clear"); 00014 00015 return 0; 00016 }