15 lines
257 B
C
Executable File
15 lines
257 B
C
Executable File
#ifndef LIFEUTIL_H
|
|
#define LIFEUTIL_H
|
|
|
|
/*
|
|
* Erases all currently visible test from the output console.
|
|
*/
|
|
void clearConsole();
|
|
|
|
/*
|
|
* Causes the program to halt execution for the given number of milliseconds.
|
|
*/
|
|
void pause(int ms);
|
|
|
|
#endif // LIFEUTIL_H
|