8 lines
133 B
C
8 lines
133 B
C
#ifndef FUNCTIONS_H
|
|
#define FUNCTIONS_H
|
|
|
|
void flip_coin();
|
|
void generate_random_number(int lower, int upper);
|
|
|
|
#endif // FUNCTIONS_H
|