Reorganize code into library for reuse

This commit is contained in:
2021-05-08 15:58:59 -04:00
parent d1f144aca7
commit aa4d8efdd2
20 changed files with 140 additions and 75 deletions

8
lib/prim.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef _PRIM_H
#define _PRIM_H 1
#include "grid.h"
void prim(mazegrid_t const* grid, mazegrid_t* result);
#endif // !def(_PRIM_H)