about summary refs log tree commit diff stats
path: root/cpp/termbox/bytebuffer.inl
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/termbox/bytebuffer.inl')
-rw-r--r--cpp/termbox/bytebuffer.inl92
1 files changed, 46 insertions, 46 deletions
diff --git a/cpp/termbox/bytebuffer.inl b/cpp/termbox/bytebuffer.inl
index 62e234c0..aae8f073 100644
--- a/cpp/termbox/bytebuffer.inl
+++ b/cpp/termbox/bytebuffer.inl
@@ -1,79 +1,79 @@
 struct bytebuffer {
-	char *buf;
-	int len;
-	int cap;
+  char *buf;
+  int len;
+  int cap;
 };
 
 static void bytebuffer_reserve(struct bytebuffer *b, int cap) {
-	if (b->cap >= cap) {
-		return;
-	}
+  if (b->cap >= cap) {
+    return;
+  }
 
-	// prefer doubling capacity
-	if (b->cap * 2 >= cap) {
-		cap = b->cap * 2;
-	}
+  // prefer doubling capacity
+  if (b->cap * 2 >= cap) {
+    cap = b->cap * 2;
+  }
 
-	char *newbuf = malloc(cap);
-	if (b->len > 0) {
-		// copy what was there, b->len > 0 assumes b->buf != null
-		memcpy(newbuf, b->buf, b->len);
-	}
-	if (b->buf) {
-		// in case there was an allocated buffer, free it
-		free(b->buf);
-	}
-	b->buf = newbuf;
-	b->cap = cap;
+  char *newbuf = malloc(cap);
+  if (b->len > 0) {
+    // copy what was there, b->len > 0 assumes b->buf != null
+    memcpy(newbuf, b->buf, b->len);
+  }
+  if (b->buf) {
+    // in case there was an allocated buffer, free it
+    free(b->buf);
+  }
+  b->buf = newbuf;
+  b->cap = cap;
 }
 
 static void bytebuffer_init(struct bytebuffer *b, int cap) {
-	b->cap = 0;
-	b->len = 0;
-	b->buf = 0;
+  b->cap = 0;
+  b->len = 0;
+  b->buf = 0;
 
-	if (cap > 0) {
-		b->cap = cap;
-		b->buf = malloc(cap); // just assume malloc works always
-	}
+  if (cap > 0) {
+    b->cap = cap;
+    b->buf = malloc(cap); // just assume malloc works always
+  }
 }
 
 static void bytebuffer_free(struct bytebuffer *b) {
-	if (b->buf)
-		free(b->buf);
+  if (b->buf)
+    free(b->buf);
 }
 
 static void bytebuffer_clear(struct bytebuffer *b) {
-	b->len = 0;
+  b->len = 0;
 }
 
 static void bytebuffer_append(struct bytebuffer *b, const char *data, int len) {
-	bytebuffer_reserve(b, b->len + len);
-	memcpy(b->buf + b->len, data, len);
-	b->len += len;
+  bytebuffer_reserve(b, b->len + len);
+  memcpy(b->buf + b->len, data, len);
+  b->len += len;
 }
 
 static void bytebuffer_puts(struct bytebuffer *b, const char *str) {
-	bytebuffer_append(b, str, strlen(str));
+  bytebuffer_append(b, str, strlen(str));
 }
 
 static void bytebuffer_resize(struct bytebuffer *b, int len) {
-	bytebuffer_reserve(b, len);
-	b->len = len;
+  bytebuffer_reserve(b, len);
+  b->len = len;
 }
 
 static void bytebuffer_flush(struct bytebuffer *b, int fd) {
-	int yyy = write(fd, b->buf, b->len);
+  int yyy = write(fd, b->buf, b->len);
   (void) yyy;
-	bytebuffer_clear(b);
+  bytebuffer_clear(b);
 }
 
 static void bytebuffer_truncate(struct bytebuffer *b, int n) {
-	if (n <= 0)
-		return;
-	if (n > b->len)
-		n = b->len;
-	const int nmove = b->len - n;
-	memmove(b->buf, b->buf+n, nmove);
-	b->len -= n;
+  if (n <= 0)
+    return;
+  if (n > b->len)
+    n = b->len;
+  const int nmove = b->len - n;
+  memmove(b->buf, b->buf+n, nmove);
+  b->len -= n;
 }
ision' href='/danisanti/profani-tty/blame/src/config/files.c?id=95015cec56fa56f2ef97227edf06de17c65000d9'>^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^

705b6f78 ^
ef942bd2 ^












74e06116 ^
a3a73cf0 ^
29452f8f ^
a2726b6a ^

29452f8f ^




a2726b6a ^
29452f8f ^









a3a73cf0 ^
a2726b6a ^
a3a73cf0 ^
a2726b6a ^
a8990014 ^
75cfe388 ^

f2159559 ^
705b6f78 ^
a8990014 ^




75cfe388 ^
a8990014 ^
75cfe388 ^
75cfe388 ^
a8990014 ^


75cfe388 ^
a8990014 ^

75cfe388 ^
a2726b6a ^
75cfe388 ^
a3a73cf0 ^





74e06116 ^
a2726b6a ^
a3a73cf0 ^
a2726b6a ^
4d718488 ^
a3a73cf0 ^
a3a73cf0 ^


74e06116 ^
a2726b6a ^
a3a73cf0 ^
a2726b6a ^
4d718488 ^
a3a73cf0 ^
a3a73cf0 ^


1224aa41 ^
a2726b6a ^
1224aa41 ^
a2726b6a ^
a2726b6a ^
1224aa41 ^
4d718488 ^



1224aa41 ^



b8e46552 ^




705b6f78 ^
b8e46552 ^











a3a73cf0 ^

ef942bd2 ^
a2726b6a ^

f1141932 ^


ef942bd2 ^
f1141932 ^
ef942bd2 ^

f1141932 ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^





a3a73cf0 ^

ef942bd2 ^
a2726b6a ^

f1141932 ^


ef942bd2 ^
f1141932 ^
ef942bd2 ^

f1141932 ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^
a2726b6a ^
ef942bd2 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244