]> git.donarmstrong.com Git - samtools.git/blob - kstring.h
* samtools-0.1.2-16
[samtools.git] / kstring.h
1 #ifndef KSTRING_H
2 #define KSTRING_H
3
4 #include <stdlib.h>
5 #include <string.h>
6
7 #ifndef kroundup32
8 #define kroundup32(x) (--(x), (x)|=(x)>>1, (x)|=(x)>>2, (x)|=(x)>>4, (x)|=(x)>>8, (x)|=(x)>>16, ++(x))
9 #endif
10
11 #ifndef KSTRING_T
12 #define KSTRING_T kstring_t
13 typedef struct __kstring_t {
14         size_t l, m;
15         char *s;
16 } kstring_t;
17 #endif
18
19 int ksprintf(kstring_t *s, const char *fmt, ...);
20 int ksplit_core(char *s, int delimiter, int *_max, int **_offsets);
21
22 static inline int kputs(const char *p, kstring_t *s)
23 {
24         int l = strlen(p);
25         if (s->l + l + 1 >= s->m) {
26                 s->m = s->l + l + 2;
27                 kroundup32(s->m);
28                 s->s = (char*)realloc(s->s, s->m);
29         }
30         strcpy(s->s + s->l, p);
31         s->l += l;
32         return l;
33 }
34
35 static inline int kputc(int c, kstring_t *s)
36 {
37         if (s->l + 1 >= s->m) {
38                 s->m = s->l + 2;
39                 kroundup32(s->m);
40                 s->s = (char*)realloc(s->s, s->m);
41         }
42         s->s[s->l++] = c;
43         s->s[s->l] = 0;
44         return c;
45 }
46
47 static inline int *ksplit(kstring_t *s, int delimiter, int *n)
48 {
49         int max = 0, *offsets = 0;
50         *n = ksplit_core(s->s, delimiter, &max, &offsets);
51         return offsets;
52 }
53
54 #endif