diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2021-12-06 21:44:51 -0700 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2021-12-06 21:44:51 -0700 |
commit | 253b267f1cee377a834860fb4deac54ef9a78b7a (patch) | |
tree | d5eb10133097ba38b46c448683debba766162785 /mpi/include/create_grid.h | |
parent | b3df69fd3ddd8f4ee88903bf74df67926898fd0c (diff) | |
download | gol-253b267f1cee377a834860fb4deac54ef9a78b7a.tar.gz gol-253b267f1cee377a834860fb4deac54ef9a78b7a.zip |
MPI
Diffstat (limited to 'mpi/include/create_grid.h')
-rw-r--r-- | mpi/include/create_grid.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mpi/include/create_grid.h b/mpi/include/create_grid.h new file mode 100644 index 0000000..45ac891 --- /dev/null +++ b/mpi/include/create_grid.h @@ -0,0 +1,12 @@ +#include <stdio.h> +#include <stdlib.h> +#include "file.h" +#include "game.h" + +#ifndef CREATE_GRID_H +#define CREATE_GRID_H + +void print_grid(struct GAME* game); +void create_grid(int argc, char** argv); + +#endif // CREATE_GRID_H |