summaryrefslogblamecommitdiffstats
path: root/todo.h
blob: 8c0e2f69901bd0eed8c92243446dc60177814d17 (plain) (tree)
1
2
3
4
5
6
7
8
9




                         
                            


                     
                     


                    

                          
                                           
                                                    
                                                        
                                        
                                        

     
#ifndef __MICROBBS_TODO_H
#define __MICROBBS_TODO_H

//part of libterm
#include "libterm/term.h"
#include "libterm/term_io.h"
#include "logs.h"
#include "file_use.h"
#include "list.h"
#include "netbytes.h"

#include "kconfig.h"

#define TODO_MAX_NUMBER 40

int bbs_todo( term_screen *, const char *);
int bbs_todo_add( term_screen*, List*, const char*);
int bbs_todo_remove( term_screen*, List*, const char* );
int bbs_todo_save( const char*, List* );
int bbs_todo_load( const char*, List* );

#endif