nissy-classic

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

shell.h (269B)


      1 #ifndef SHELL_H
      2 #define SHELL_H
      3 
      4 #include "commands.h"
      5 
      6 #define MAXLINELEN          10000
      7 #define MAXTOKENLEN         255
      8 #define MAXNTOKENS          255
      9 
     10 bool        checkfiles(void);
     11 void        exec_args(int c, char **v);
     12 void        launch(bool batchmode);
     13 
     14 #endif