1 2 3 4 5 6 7 8 9 10 11 12 13 14
#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