]> granicus.if.org Git - neomutt/commitdiff
date: move defines, so they can be used for testing
authorRichard Russon <rich@flatcap.org>
Thu, 30 May 2019 09:35:11 +0000 (10:35 +0100)
committerRichard Russon <rich@flatcap.org>
Thu, 30 May 2019 10:08:48 +0000 (11:08 +0100)
mutt/date.c
mutt/date.h

index ab1b7465d4584c32143181e2e40a7039bcaadf9c..a89e41a1d701ee1d932fdd0fc44c2db2022956df 100644 (file)
 #include "memory.h"
 #include "string2.h"
 
-/* theoretically time_t can be float but it is integer on most (if not all) systems */
-#define TIME_T_MAX ((((time_t) 1 << (sizeof(time_t) * 8 - 2)) - 1) * 2 + 1)
-#define TIME_T_MIN (-TIME_T_MAX - 1)
-#define TM_YEAR_MAX                                                            \
-  (1970 + (((((TIME_T_MAX - 59) / 60) - 59) / 60) - 23) / 24 / 366)
-#define TM_YEAR_MIN (1970 - (TM_YEAR_MAX - 1970) - 1)
-
 // clang-format off
-
 /**
  * Weekdays - Day of the week (abbreviated)
  */
index 675c877e9c64834346eeda3ff1a2e991e2ab326f..2637d99ebd8dc5aba3ea20ffd6413a73647b9542 100644 (file)
 #include <stdbool.h>
 #include <time.h>
 
+/* theoretically time_t can be float but it is integer on most (if not all) systems */
+#define TIME_T_MAX ((((time_t) 1 << (sizeof(time_t) * 8 - 2)) - 1) * 2 + 1)
+#define TIME_T_MIN (-TIME_T_MAX - 1)
+#define TM_YEAR_MAX                                                            \
+  (1970 + (((((TIME_T_MAX - 59) / 60) - 59) / 60) - 23) / 24 / 366)
+#define TM_YEAR_MIN (1970 - (TM_YEAR_MAX - 1970) - 1)
+
 #define MUTT_DATE_NOW -9999 ///< Constant representing the 'current time', see: mutt_date_gmtime(), mutt_date_localtime()
 
 /**