#ifndef __MICROBBS_TWIT_H #define __MICROBBS_TWIT_H #include "libterm/term.h" #include "libterm/term_io.h" #include "logs.h" #include "file_use.h" #include "list.h" #include "kconfig.h" //maybe move to Kconf #define TWIT_MAX_MESSAGES 10 int bbs_twit( term_screen *, char *); int bbs_twit_add( term_screen *ts, List *twit, const char *fname); int bbs_twit_save( const char *fname, List *twit ); #endif