]> Pileus Git - lackey/blob - src/test.c
Add simple notification daemon mode
[lackey] / src / test.c
1 /*
2  * Copyright (C) 2012-2013 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 #include "date.h"
19 #include "cal.h"
20 #include "conf.h"
21 #include "util.h"
22
23 void date_test(void);
24 void conf_test(void);
25 void ical_test(void *path);
26 void daemon_test();
27
28 int main(int argc, char **argv)
29 {
30         for (int i = 1; i < argc; i++) {
31                 if (match(argv[i], "date")) date_test();
32                 if (match(argv[i], "conf")) conf_test();
33                 if (match(argv[i], "ical")) ical_test(argv[++i]);
34                 if (match(argv[i], "daemon")) daemon_test();
35         }
36         return 0;
37 }