Data Structures Lerax 1.0.0
Essential Data Structures for C language
Loading...
Searching...
No Matches
clear.h
Go to the documentation of this file.
1
12
13#ifndef CLEAR_H
14#define CLEAR_H
15
16#ifdef _WIN32
17static inline void clear() {
18 system("cls");
19}
20#else
21static inline void clear() {
22 printf("\033[1;1H\033[2J");
23}
24#endif
25
26#endif