aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Homework 1/clear.hpp
blob: e978d1a43861d947a8f133d0a6c48c2aabedbcf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef CLEAR_H
#define CLEAR_H

#include <iostream>

using std::cout;
using std::cin;

inline void ClearScreen()
{
	cout << "\033[2J\033[1;1H";
}


#endif