diff options
Diffstat (limited to 'lab1/lib/lifeutil.h')
| -rw-r--r-- | lab1/lib/lifeutil.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lab1/lib/lifeutil.h b/lab1/lib/lifeutil.h new file mode 100644 index 0000000..62a18e1 --- /dev/null +++ b/lab1/lib/lifeutil.h @@ -0,0 +1,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 |
