diff options
Diffstat (limited to 'src/io/cli.h')
| -rw-r--r-- | src/io/cli.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/io/cli.h b/src/io/cli.h index dd3d791..5f668f8 100644 --- a/src/io/cli.h +++ b/src/io/cli.h @@ -18,6 +18,11 @@ extern struct argp_option options[]; enum field_e { FIELD_PRIME, FIELD_BINARY }; enum format_e { FORMAT_JSON, FORMAT_CSV }; +enum points_e { POINTS_RANDOM, POINTS_PRIME }; +struct points_s { + enum points_e type; + size_t amount; +}; typedef struct config_t { enum field_e field; @@ -34,6 +39,7 @@ typedef struct config_t { bool from_seed; char *seed; bool unique; + struct points_s points; char *datadir; enum format_e format; |
