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