Reorganise the project

This commit is contained in:
2023-07-02 19:28:48 +01:00
parent 301ea44759
commit 50f881c655
6 changed files with 11 additions and 58 deletions

View File

@@ -0,0 +1,15 @@
#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

View File

@@ -0,0 +1,8 @@
#ifndef GENERATOR_H
#define GENERATOR_H
#include "point_types.h"
void fill_pairs_array(PairArray *pairs, bool clustered);
#endif // !GENERATOR_H