nissy-classic

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

commands.h (236B)


      1 #ifndef COMMANDS_H
      2 #define COMMANDS_H
      3 
      4 #include <time.h>
      5 
      6 #include "solve.h"
      7 #include "steps.h"
      8 
      9 void                    free_args(CommandArgs *args);
     10 CommandArgs *           new_args(void);
     11 
     12 extern Command *        commands[];
     13 
     14 #endif