summaryrefslogtreecommitdiffstats
path: root/twit.h
blob: 34aef0b20126b884425a70e1b793c5785a13efa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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