X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=src%2Fdate.c;h=9bcf81663906629c95bbf32890ae13026c05946e;hb=296fd1bb5f87b1961e98c7ea4c224219012f7161;hp=c7e5cbde8da081cfb2f810e85618072d0fff92dc;hpb=e8d71b7dc27508ffe496116244f9dceed91b7b5e;p=lackey diff --git a/src/date.c b/src/date.c index c7e5cbd..9bcf816 100644 --- a/src/date.c +++ b/src/date.c @@ -1,16 +1,16 @@ /* * Copyright (C) 2012 Andy Spencer - * + * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ @@ -23,9 +23,7 @@ #include "date.h" /* Global data */ -year_t YEAR; -month_t MONTH; -day_t DAY; +date_t SEL; /* Initialize */ void date_init(void) @@ -33,14 +31,9 @@ void date_init(void) time_t sec = time(NULL); struct tm *tm = localtime(&sec); - YEAR = tm->tm_year+1900; - MONTH = tm->tm_mon; - DAY = tm->tm_mday-1; - - /* Testing */ - //YEAR = 2008; - //MONTH = OCT; - //DAY = 21; + SEL.year = tm->tm_year+1900; + SEL.month = tm->tm_mon; + SEL.day = tm->tm_mday-1; } /* Time functions */