all done, just adding tests for redundancy

This commit is contained in:
2026-03-17 15:36:27 -06:00
parent 3dd365012c
commit c56cc5dca2
5 changed files with 242 additions and 15 deletions

14
include/utils.h Normal file
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 // !