diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-28 13:11:42 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-28 13:11:42 +0000 |
commit | 4b987f70ac463121f9791eb3493952a77aba495f (patch) | |
tree | 2754295b8dd40b6818ddd80d97a327329de854c0 /src/io.h | |
parent | fdc325acd8549acf0fb52c84b8074aef0c2c38c7 (diff) | |
download | calcurse-4b987f70ac463121f9791eb3493952a77aba495f.tar.gz calcurse-4b987f70ac463121f9791eb3493952a77aba495f.zip |
unuseful headers removed and some functions became static
Diffstat (limited to 'src/io.h')
-rwxr-xr-x | src/io.h | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -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 */ |