nissy-nx

A Rubik's cube optimal solver
git clone https://git.tronto.net/nissy-nx
Download | Log | Files | Refs | README | LICENSE

env.h (201B)


      1 #ifndef ENV_H
      2 #define ENV_H
      3 
      4 #include <stdbool.h>
      5 #include <stdio.h>
      6 #include <stdlib.h>
      7 #include <string.h>
      8 #include <unistd.h>
      9 #include <sys/stat.h>
     10 
     11 void init_env();
     12 
     13 extern char *tabledir;
     14 
     15 #endif