16 lines
237 B
C
16 lines
237 B
C
#ifndef GEN_ARGPARSER_H
|
|
#define GEN_ARGPARSER_H
|
|
|
|
#include "aliases.h"
|
|
#include <argp.h>
|
|
|
|
struct GeneratorArgs {
|
|
u32 seed;
|
|
bool clustered;
|
|
u64 count;
|
|
};
|
|
|
|
GeneratorArgs parse_args(i32 argc, char *argv[]);
|
|
|
|
#endif // !GEN_ARGPARSER_H
|