Advertisement
Guest User

clrscr.h

a guest
May 17th, 2015
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #ifndef CLRSCR_H_INCLUDED
  2. #define CLRSCR_H_INCLUDED
  3.  
  4. #include <iostream>
  5.  
  6. void clrscr()
  7. {
  8.     std::cout << "\E[H\E[2J";
  9. }
  10.  
  11. void gotl()
  12. {
  13.     std::cout << "\E[H";
  14. }
  15.  
  16. #endif // CLRSCR_H_INCLUDED
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement