Added initial files
This commit is contained in:
@@ -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};
|
||||
}
|
||||
Reference in New Issue
Block a user