]> Pileus Git - ~andy/lamechat/blob - util.h
Add inline completion.
[~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 typedef struct {
44         poll_t    poll;
45         cb_t      timer;
46         void     *data;
47 } idle_t;
48
49 /* Debug functions */
50 void util_init(void);
51
52 /* Stirng functions */
53 void strsub(char *str, char find, char repl);
54 char *strcopy(const char *str);
55 void strset(char **old, const char *str);
56 int compare(const char *a, const char *b);
57 int match(const char *a, const char *b);
58 int starts(const char *prefix, const char *str);
59 int prefix(const char *str, const char *prefix, const char **suffix);
60 int suffix(const char *str, const char *prefix, const char **suffix);
61 char *despace(char *text);
62 void escape(char *dst, const char *src, int len);
63
64 /* Memory functions */
65 void *alloc0(int size);
66 void append(buf_t *buf, const char *data, int len);
67 void release(buf_t *buf);
68 const char *reset(buf_t *buf);
69
70 /* Data functions */
71 int base64(const void *in, int ilen, void *out, int olen);
72
73 /* File functions */
74 char *read_file(const char *path, int *len);
75
76 /* Polling functions */
77 void poll_add(poll_t *poll, int fd, cb_t cb, void *data);
78 void poll_ctl(poll_t *poll, int in, int out, int err);
79 void poll_del(poll_t *poll);
80 int poll_run(int timeout);
81 void poll_quit(void);
82
83 /* Idle functions */
84 void idle_add(idle_t *idle);
85 void idle_set(idle_t *idle, int first, int next);
86
87 /* Debug functions */
88 void debug(char *fmt, ...);
89 void error(char *fmt, ...);