unuseful headers removed and some functions became static

This commit is contained in:
Frederic Culot
2007-07-28 13:11:42 +00:00
parent fdc325acd8
commit 4b987f70ac
28 changed files with 1021 additions and 1115 deletions

View File

@@ -1,4 +1,4 @@
/* $calcurse: io.h,v 1.6 2007/05/06 13:32:42 culot Exp $ */
/* $calcurse: io.h,v 1.7 2007/07/28 13:11:42 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -35,13 +35,13 @@ typedef enum {
IO_EXPORT_NBMODES
} export_mode_t;
void io_init(char *cfile);
void io_extract_data(char *dst_data, const char *org, int len);
void io_save_cal(conf_t *conf);
void load_app(void);
int load_todo(void);
int check_data_files(void);
void startup_screen(bool skip_dialogs, int no_data_file);
void io_export_data(export_mode_t mode, conf_t *conf);
void io_init(char *);
void io_extract_data(char *, const char *, int);
void io_save_cal(conf_t *);
void io_load_app(void);
int io_load_todo(void);
int io_check_data_files(void);
void io_startup_screen(bool, int);
void io_export_data(export_mode_t, conf_t *);
#endif /* CALCURSE_IO_H */