]> Pileus Git - lackey/blob - src/util.c
Cleanup headers and whitespace
[lackey] / src / util.c
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 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <ncurses.h>
22
23 #include "date.h"
24 #include "cal.h"
25 #include "view.h"
26
27 /* Static data */
28 static FILE *debug_fd = NULL;
29
30 /* Initialize */
31 void util_init(void)
32 {
33         debug_fd = fopen("/tmp/lackey.log", "w+");
34 }
35
36 /* String functions */
37 void strsub(char *str, char find, char repl)
38 {
39         for (char *cur = str; *cur; cur++)
40                 if (*cur == find)
41                         *cur = repl;
42 }
43
44 /* Debugging functions */
45 int debug(char *fmt, ...)
46 {
47         int rval;
48         va_list ap;
49
50         /* Log to debug file */
51         if (debug_fd) {
52                 va_start(ap, fmt);
53                 vfprintf(debug_fd, "debug: ", ap);
54                 rval = vfprintf(debug_fd, fmt, ap);
55         }
56
57         /* Log to status bar */
58         if (stdscr) {
59                 va_start(ap, fmt);
60                 mvhline(LINES-2, 0, ACS_HLINE, COLS);
61                 move(LINES-1, 0);
62                 attron(COLOR_PAIR(COLOR_ERROR));
63                 vwprintw(stdscr, fmt, ap);
64                 attroff(COLOR_PAIR(COLOR_ERROR));
65                 clrtoeol();
66         }
67
68         va_end(ap);
69         return rval;
70 }