Got everything, just need to change comments and do the menu

This commit is contained in:
2026-03-21 22:13:19 -06:00
commit 96006ff170
8 changed files with 972 additions and 0 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 // !