diff options
author | Frederic Culot <calcurse@culot.org> | 2008-08-10 09:24:46 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-08-10 09:24:46 +0000 |
commit | 1674800d5fb26decfa74cb7a1d94e2154b7c27a6 (patch) | |
tree | 1e7b15d77ed74c2c150c9a1dc05cd709bba3ac81 /src/recur.h | |
parent | cc3b4303056d891c4782469be50be21ca50e2271 (diff) | |
download | calcurse-1674800d5fb26decfa74cb7a1d94e2154b7c27a6.zip |
pcal export added
Diffstat (limited to 'src/recur.h')
-rwxr-xr-x | src/recur.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/recur.h b/src/recur.h index dd81724..d4af3e8 100755 --- a/src/recur.h +++ b/src/recur.h @@ -1,4 +1,4 @@ -/* $calcurse: recur.h,v 1.19 2008/04/12 21:14:03 culot Exp $ */ +/* $calcurse: recur.h,v 1.20 2008/08/10 09:24:46 culot Exp $ */ /* * Calcurse - text-based organizer @@ -81,6 +81,8 @@ struct recur_event_s char *note; /* note attached to event */ }; +typedef void (*recur_cb_foreach_date_t)(FILE *, long, char *); + extern recur_apoint_llist_t *recur_alist_p; extern struct recur_event_s *recur_elist; @@ -94,6 +96,7 @@ struct recur_event_s *recur_event_scan (FILE *, struct tm, int, char, int, struct tm, char *, struct days_s *); void recur_save_data (FILE *); +int recur_day_is_exc (long, struct days_s *); unsigned recur_item_inday (long, struct days_s *, int, int, long, long); void recur_event_erase (long, unsigned, unsigned, |