From ea9940af5210e52367dcce24d144c163a71b7720 Mon Sep 17 00:00:00 2001 From: El-BG-1970 Date: Thu, 14 Oct 2021 13:03:23 +0200 Subject: added [TODAY] and [TOMORROW] labels --- date.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'date.h') diff --git a/date.h b/date.h index 649b90f..b9c4e3c 100644 --- a/date.h +++ b/date.h @@ -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__ -- cgit v1.2.3