]> Pileus Git - lackey/blob - src/util.h
Make month view interactive
[lackey] / src / util.h
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #ifndef UTIL_H
19 #define UTIL_H
20
21 /* Macros */
22 #define MIN(a,b) ((a) < (b) ? (a) : (b))
23 #define MAX(a,b) ((a) > (b) ? (a) : (b))
24 #define ROUND(x) ((int)((x)+0.5))
25 #define N_ELEMENTS(x) (sizeof(x)/sizeof((x)[0]))
26
27 /* Time types */
28 typedef int year_t;
29 typedef int day_t;
30
31 typedef enum {
32         JAN =  0,
33         FEB =  1,
34         MAR =  2,
35         APR =  3,
36         MAY =  4,
37         JUN =  5,
38         JUL =  6,
39         AUG =  7,
40         SEP =  8,
41         OCT =  9,
42         NOV = 10,
43         DEC = 11,
44 } month_t;
45
46 typedef enum {
47         SUN = 0,
48         MON = 1,
49         TUE = 2,
50         WED = 3,
51         THU = 4,
52         FRI = 5,
53         SAT = 6,
54 } wday_t;
55
56 /* Time functions */
57 int is_leap_year(year_t year);
58 int days_in_year(year_t year);
59 int days_in_month(year_t year, month_t month);
60 int weeks_in_month(year_t year, month_t month);
61 wday_t day_of_week(year_t year, month_t month, day_t day);
62 wday_t start_of_month(year_t year, month_t month);
63 day_t start_of_week(year_t year, month_t month, day_t day);
64 void add_days(year_t *year, month_t *month, day_t *day, int days);
65 void add_months(year_t *year, month_t *month, int months);
66
67 /* Time to string functions */
68 const char *month_to_str(month_t month);
69 const char *month_to_string(month_t month);
70 const char *day_to_st(wday_t day);
71 const char *day_to_str(wday_t day);
72 const char *day_to_string(wday_t day);
73
74 /* Tests */
75 void test_time(void);
76
77 #endif