15 lines
257 B
C
15 lines
257 B
C
|
#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
|