aboutsummaryrefslogtreecommitdiffstats
path: root/src/calcurse.h
diff options
context:
space:
mode:
authorLars Henriksen <LarsHenriksen@get2net.dk>2019-02-05 21:56:13 +0100
committerLukas Fleischer <lfleischer@calcurse.org>2019-02-28 08:03:53 +0100
commit528368932ceb05fec10638062ca56d6772f21040 (patch)
tree3124e3805f923ef3461c67cf3cab576f4b378634 /src/calcurse.h
parenta47a562322d52275b0bae7181a5077cf95b24ffb (diff)
downloadcalcurse-528368932ceb05fec10638062ca56d6772f21040.tar.gz
calcurse-528368932ceb05fec10638062ca56d6772f21040.zip
View or edit exception days of a recurrent item
The exception days are presented for viewing/editing as a string of space-separated dates (in the user-preferred input format). After editing the string is checked for valid dates, but there is no check that a date is meaningful (an occurrence day of the item between start day and until day). Although possible, it is best to add exception days in the usual way by deletion of occurrences. Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk> Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/calcurse.h')
-rw-r--r--src/calcurse.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/calcurse.h b/src/calcurse.h
index 5e14b80..afa9046 100644
--- a/src/calcurse.h
+++ b/src/calcurse.h
@@ -1008,6 +1008,8 @@ void pcal_export_data(FILE *);
/* recur.c */
extern llist_ts_t recur_alist_p;
extern llist_t recur_elist;
+void recur_update_exc(llist_t *, char *);
+char *recur_exc2str(llist_t *);
struct recur_event *recur_event_dup(struct recur_event *);
struct recur_apoint *recur_apoint_dup(struct recur_apoint *);
void recur_event_free_bkp(void);