diff options
| author | Gustav Sörnäs <gusso230@student.liu.se> | 2020-08-16 03:49:43 +0200 |
|---|---|---|
| committer | Gustav Sörnäs <gusso230@student.liu.se> | 2020-08-16 15:46:42 +0200 |
| commit | d3ae7832ab0beae40bac664a5ce9da21804d9916 (patch) | |
| tree | 6b97a332563d94932ea7adb445926c58b8a06728 /lab1/lib/lifeutil.h | |
| parent | b1bf345edb518800d0cfeae97eceacf51985e7e7 (diff) | |
| download | tddd86-L1.tar.gz | |
initial lab1L1
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 |
