15 lines
306 B
C
15 lines
306 B
C
#ifndef UTILS_H
|
|
#define UTILS_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
|
|
void clear_screen();
|
|
void wait_enter();
|
|
void sleep_seconds(size_t s);
|
|
void read_string(const char *message, char **dest);
|
|
int read_int(const char *message, int *dest);
|
|
int read_double(const char *message, double *dest);
|
|
|
|
#endif // !
|