nissy-classic

Stable branch of nissy
git clone https://git.tronto.net/nissy-classic
Download | Log | Files | Refs | README | LICENSE

env.h (205B)


      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 extern char *tabledir;
     12 
     13 void init_env(void);
     14 
     15 #endif