]> Pileus Git - ~andy/lamechat/blob - util.h
Window management
[~andy/lamechat] / util.h
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 /* Macros */
19 #define ABS(a)   ((a) > 0 ? (a) : -(a))
20 #define MIN(a,b) ((a) < (b) ? (a) : (b))
21 #define MAX(a,b) ((a) > (b) ? (a) : (b))
22 #define CLAMP(x,l,h) MIN(MAX(x,l),h)
23 #define ROUND(x) ((int)((x)+0.5))
24 #define N_ELEMENTS(x) (sizeof(x)/sizeof((x)[0]))
25
26 #define new0(type) alloc0(sizeof(type))
27
28 /* Types */
29 typedef void (*cb_t)(void *data);
30
31 typedef struct {
32         char *data;
33         int   len;
34         int   max;
35 } buf_t;
36
37 typedef struct {
38         int   fd;
39         cb_t  cb;
40         void *data;
41 } poll_t;
42
43 /* Debug functions */
44 void util_init(void);
45
46 /* Stirng functions */
47 void strsub(char *str, char find, char repl);
48 char *strcopy(const char *str);
49 void strset(char **old, const char *str);
50 int match(const char *a, const char *b);
51 int match(const char *a, const char *b);
52 int prefix(const char *str, const char *prefix, const char **suffix);
53
54 /* Memory functions */
55 void *alloc0(int size);
56 void append(buf_t *buf, const char *data, int len);
57 void release(buf_t *buf);
58 const char *reset(buf_t *buf);
59
60 /* Data functions */
61 int base64(const void *in, int ilen, void *out, int olen);
62
63 /* File functions */
64 char *read_file(const char *path, int *len);
65
66 /* Polling functions */
67 int poll_add(poll_t *poll, int fd, cb_t cb, void *data);
68 int poll_ctl(poll_t *poll, int in, int out, int err);
69 int poll_del(poll_t *poll);
70 int poll_run(int timeout);
71 void poll_quit(void);
72
73 /* Debug functions */
74 void debug(char *fmt, ...);
75 void error(char *fmt, ...);