00001 #ifndef SCLI_H 00002 #define SCLI_H 00003 00004 #include "config.h" 00005 #include <stdint.h> 00006 00007 typedef struct { 00008 const char *name; 00009 char *line; 00010 char *cwd; 00011 char *prompt; 00012 int lasterr; 00013 } cliuser_t; 00014 00015 extern const char *progname; 00016 00017 #endif