clear_scrn.c 369 B

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