From 1596d9c76ac141e4d6badd09fbf953aea97b4428 Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Wed, 21 Dec 2022 13:41:25 -0500 Subject: [PATCH] Better comments. --- src/main.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/main.c b/src/main.c index bfde918e..c378e67b 100644 --- a/src/main.c +++ b/src/main.c @@ -317,9 +317,12 @@ static void DoReminders(void) /***************************************************************/ /* */ -/* DSE */ +/* DSE */ /* */ -/* Given day, month, year, return DSE date in days since */ +/* DSE stands for "Days Since Epoch"; the Remind epoch is */ +/* midnight on 1990-01-01 */ +/* */ +/* Given day, month, year, return DSE date in days since */ /* 1 January 1990. */ /* */ /***************************************************************/ @@ -337,9 +340,9 @@ int DSE(int year, int month, int day) /***************************************************************/ /* */ -/* FromDSE */ +/* FromDSE */ /* */ -/* Convert a DSE date to year, month, day. You may supply */ +/* Convert a DSE date to year, month, day. You may supply */ /* NULL for y, m or d if you're not interested in that value */ /* */ /***************************************************************/