From 3b0ea80811a1c939e0b1b97e0f8e34dabd54717f Mon Sep 17 00:00:00 2001 From: El-BG-1970 Date: Wed, 16 Mar 2022 19:52:55 +0100 Subject: better compartimentalization --- date.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'date.h') diff --git a/date.h b/date.h index b9c4e3c..c160395 100644 --- a/date.h +++ b/date.h @@ -11,6 +11,7 @@ typedef struct Date { } Date; Date extract_date(char *str); +Date adjust_date(Date date); bool smaller(Date a, Date b); bool strictly_smaller(Date a, Date b); bool eql(Date a, Date b); @@ -22,6 +23,7 @@ char *print_date_to_string(Date date); Date today(); Date tomorrow(Date td); Date nextweek(Date td); +Date nextmonth(Date td); #define __DATE_H__ #endif -- cgit v1.2.3