Now initializes a path in memory

This commit is contained in:
Alexandre Paillier
2022-05-02 15:30:26 +02:00
parent 7e35b96ec0
commit 0e386a4204
6 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#ifndef PATH_H_
#define PATH_H_
#include <stdbool.h>
#define MAX_PATH_DEPTH 16
extern uint8_t *path_indexes;
bool init_path(void);
#endif // PATH_H_