summaryrefslogtreecommitdiffstats
path: root/lab1/lib/lifeutil.h
blob: 62a18e1dbc4a57b5711a7a1b4ea8c80c9d5a90f2 (plain) (blame)
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