All wroking fine, too tired to make tests, everything seems fine

This commit is contained in:
2026-03-17 22:05:59 -06:00
parent e4c74f6947
commit f3dc4ce7c5
4 changed files with 269 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
#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 // !