diff options
author | Lukas Fleischer <lfleischer@calcurse.org> | 2016-02-05 09:15:01 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@calcurse.org> | 2016-02-05 19:06:54 +0100 |
commit | e9c8197e4ed1f516c41f803b9aa79bcfe7c7a7ab (patch) | |
tree | 80660f846491bfa750a4e425d9caf7ab2b571cc3 /src/calcurse.h | |
parent | 8bdf0c0b3b8870157f50554ea51d4751d0b7efa9 (diff) | |
download | calcurse-e9c8197e4ed1f516c41f803b9aa79bcfe7c7a7ab.zip |
Refactor grep mode
Split io_save_{apts,todo}() into functions that write raw data to a file
and functions that write formatted items to stdout such that one can
easily extend the grep mode for format string support in a follow-up
commit.
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index 5e117dc..aafea6b 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -819,7 +819,9 @@ void io_init(const char *, const char *); void io_extract_data(char *, const char *, int); void io_save_mutex_lock(void); void io_save_mutex_unlock(void); +void io_dump_apts(const char *, const char *, const char *, const char *); unsigned io_save_apts(const char *); +void io_dump_todo(const char *); unsigned io_save_todo(const char *); unsigned io_save_keys(void); void io_save_cal(enum save_display); |