clear_scrn.c 355 B

1234567891011121314151617181920
  1. /**********************************************************************
  2. *
  3. * G_clear_screen()
  4. *
  5. * clears the terminal screen
  6. *
  7. **********************************************************************/
  8. #include <stdlib.h>
  9. #include <grass/gis.h>
  10. void G_clear_screen(void)
  11. {
  12. #ifdef __MINGW32__
  13. system("cls");
  14. #else
  15. system("clear");
  16. #endif
  17. }