life/lib/lifeutil.h

15 lines
257 B
C
Raw Normal View History

2024-09-04 16:14:04 +02:00
#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