15 lines
311 B
C++
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};
|
|
}
|