]> Pileus Git - lackey/blob - src/util.c
Add size function, update ical/week
[lackey] / src / util.c
1 /*
2 #include <string.h>
3  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
4  * 
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  * 
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * 
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <ncurses.h>
23
24 #include "screen.h"
25
26 /* Static data */
27 static FILE *debug_fd = NULL;
28
29 /* Initialize */
30 void util_init(void)
31 {
32         debug_fd = fopen("/tmp/lackey.log", "w+");
33 }
34
35 /* Misc functions */
36 char *sdup(const char *str)
37 {
38         if (str == NULL)
39                 return NULL;
40         int len = strlen(str);
41         char *dup = malloc(len+1);
42         memcpy(dup, str, len+1);
43         return dup;
44 }
45
46 /* Debugging functions */
47 int debug(char *fmt, ...)
48 {
49         int rval;
50         va_list ap;
51
52         /* Log to debug file */
53         if (debug_fd) {
54                 va_start(ap, fmt);
55                 vfprintf(debug_fd, "debug: ", ap);
56                 rval = vfprintf(debug_fd, fmt, ap);
57         }
58
59         /* Log to status bar */
60         if (stdscr) {
61                 va_start(ap, fmt);
62                 mvhline(LINES-2, 0, ACS_HLINE, COLS);
63                 move(LINES-1, 0);
64                 attron(COLOR_PAIR(COLOR_ERROR));
65                 vwprintw(stdscr, fmt, ap);
66                 attroff(COLOR_PAIR(COLOR_ERROR));
67                 clrtoeol();
68         }
69
70         va_end(ap);
71         return rval;
72 }