life/lib/lifeutil.h
2024-09-04 16:14:04 +02:00

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