diff options
| author | El-BG-1970 <elouan.gros.fr@gmail.com> | 2021-10-14 13:03:23 +0200 |
|---|---|---|
| committer | El-BG-1970 <elouan.gros.fr@gmail.com> | 2021-10-14 13:03:23 +0200 |
| commit | ea9940af5210e52367dcce24d144c163a71b7720 (patch) | |
| tree | a6bd4c17f1c65fcc31256e730a445d1431901910 /date.h | |
| parent | 0226c9339c42c5a519dc545e42cc123cf30b5218 (diff) | |
| download | org-to-conky-ea9940af5210e52367dcce24d144c163a71b7720.tar.gz | |
added [TODAY] and [TOMORROW] labels
Diffstat (limited to 'date.h')
| -rw-r--r-- | date.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,7 @@ typedef struct Date { Date extract_date(char *str); bool smaller(Date a, Date b); +bool strictly_smaller(Date a, Date b); bool eql(Date a, Date b); bool zero(Date a); @@ -19,6 +20,7 @@ void print_date(Date date); char *print_date_to_string(Date date); Date today(); +Date tomorrow(Date td); Date nextweek(Date td); #define __DATE_H__ |
