Added initial files

This commit is contained in:
Alexandru
2026-09-07 23:45:30 +03:00
parent 43b702fa23
commit 2612a97330
6 changed files with 47 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "input_parsing.h"
#include "constants.h"
ProgramOptions get_params(int argc, char *argv[])
{
int max_range = MAX_VALUES, num_entries = DEFAULT_NR_ENTRIES;
bool is_seed_specified = false;
int option;
while (( option = getopt_long(argc, argv, ""
return {max_range, num_entries, seed};
}