Data Structures UFC
1.0.0
Essential Data Structures for C language
Main Page
Data Structures
Files
File List
Globals
src
console
clear.h
Go to the documentation of this file.
1
13
#ifndef CLEAR_H
14
#define CLEAR_H
15
16
#ifdef _WIN32
17
static
inline
void
clear() {
18
system(
"cls"
);
19
}
20
#else
21
static
inline
void
clear() {
22
printf(
"\033[1;1H\033[2J"
);
23
}
24
#endif
25
26
#endif
Generated by
1.8.11