7 #define max(a, b) (((b) > (a))?(b):(a))
8 #define min(a, b) (((b) < (a))?(b):(a))
10 #define smalloc(size) ({void *__result__; ((__result__ = malloc(size)) == NULL)?({exit(-1); (void *)0;}):__result__;})
11 #define srealloc(ptr, size) ({void *__result__; ((__result__ = realloc((ptr), (size))) == NULL)?({exit(-1); (void *)0;}):__result__;})
12 #define szmalloc(size) memset(smalloc(size), 0, size)
13 #define sstrdup(str) ({const char *__strbuf__ = (str); strcpy(smalloc(strlen(__strbuf__) + 1), __strbuf__);})
14 #define omalloc(o) ((o) = szmalloc(sizeof(*(o))))
16 #define bufinit(buf) memset(&(buf), 0, sizeof(buf))
17 #define buffree(buf) do { if((buf).b != NULL) {free((buf).b);} bufinit(buf); } while(0)
18 #define sizebuf(buf, wanted) (_sizebuf((struct buffer *)&(buf), (wanted), sizeof(*((buf).b))))
19 #define bufdel(buf, i) (memmove((buf).b + (i), (buf).b + (i) + 1, (--((buf).d) - (i)) * sizeof(*((buf).b))))
20 #define bufadd(buf, new) \
22 _sizebuf((struct buffer *)&(buf), (buf).d + 1, sizeof(*((buf).b))); \
23 (buf).b[(buf).d++] = (new); \
25 #define bufcat(buf, new, size) \
27 size_t __bufcat_size__; \
28 __bufcat_size__ = (size); \
29 _sizebuf((struct buffer *)&(buf), (buf).d + __bufcat_size__, sizeof((buf).b)); \
30 memcpy((buf).b + (buf).d, (new), (__bufcat_size__) * sizeof(*((buf).b))); \
31 (buf).d += __bufcat_size__; \
33 #define bufcatstr(buf, str) \
37 bufcat((buf), __buf__, strlen(__buf__)); \
39 #define bufcatstr2(buf, str) \
43 bufcat((buf), __buf__, strlen(__buf__) + 1); \
45 #define bufeat(buf, len) memmove((buf).b, (buf).b + (len), (buf).d -= (len))
52 #define typedbuf(type) struct {type *b; size_t s, d;}
70 void _sizebuf(struct buffer *buf, size_t wanted, size_t el);
71 char *decstr(char **p, size_t *len);
72 char *vsprintf2(char *format, va_list al);
73 char *sprintf2(char *format, ...);
74 char *sprintf3(char *format, ...);
76 char **tokenize(char *src);
77 void freeca(char **ca);
79 void bvprintf(struct charbuf *buf, char *format, va_list al);
80 void bprintf(struct charbuf *buf, char *format, ...);
81 void replstr(char **p, char *n);
82 char *base64encode(char *data, size_t datalen);
83 char *base64decode(char *data, size_t *datalen);
84 int bbtreedel(struct btree **tree, void *item, int (*cmp)(void *, void *));
85 void freebtree(struct btree **tree, void (*ffunc)(void *));
86 int bbtreeput(struct btree **tree, void *item, int (*cmp)(void *, void *));
87 void *btreeget(struct btree *tree, void *key, int (*cmp)(void *, void *));