Files
Digital-lottery/input_parsing.cpp
T
2026-09-07 23:45:30 +03:00

15 lines
311 B
C++

#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};
}