diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-07-07 18:23:30 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-07-21 18:13:40 +0200 |
commit | 87664095cdd2c85d50e1be42442c0c24b611c7dc (patch) | |
tree | 48146b5854874fd8c699ab3348b4151905e09760 /src/calcurse.h | |
parent | 40772daaf4d241a71f6eba5190cf8cd03d028880 (diff) | |
download | calcurse-87664095cdd2c85d50e1be42442c0c24b611c7dc.zip |
Refactor out note functions
* Add new note_edit() and note_view() helper functions. Use these
instead of copy-pasted code in *_note_edit().
* Move all note-related functions (note_edit(), note_view(),
note_erase()) to a new source file "note.c".
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r-- | src/calcurse.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/calcurse.h b/src/calcurse.h index a0af508..ea37cd2 100644 --- a/src/calcurse.h +++ b/src/calcurse.h @@ -750,6 +750,11 @@ void mem_stats (void); #endif /* CALCURSE_MEMORY_DEBUG */ +/* note.c */ +void edit_note (char **, char *); +void view_note (char *, char *); +void erase_note (char **, enum eraseflg); + /* notify.c */ int notify_time_left (void); unsigned notify_needs_reminder (void); @@ -877,7 +882,6 @@ long mystrtol (const char *); void print_bool_option_incolor (WINDOW *, unsigned, int, int); const char *get_tempdir (void); char *new_tempfile (const char *, int); -void erase_note (char **, enum eraseflg); int parse_date (char *, enum datefmt, int *, int *, int *, struct date *); void str_toupper (char *); |