aboutsummaryrefslogtreecommitdiffstats
path: root/shiftbuffer.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-08-25 23:28:25 +0200
committerMattias Andrée <maandree@kth.se>2024-08-25 23:28:25 +0200
commitb35cea4b8d82a28994351f3b550e8191ee1d94bf (patch)
tree24ce0d8728711e55d5532a57db477b53521f8bc4 /shiftbuffer.c
downloadanysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.gz
anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.bz2
anysum-b35cea4b8d82a28994351f3b550e8191ee1d94bf.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'shiftbuffer.c')
-rw-r--r--shiftbuffer.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/shiftbuffer.c b/shiftbuffer.c
new file mode 100644
index 0000000..6a1213e
--- /dev/null
+++ b/shiftbuffer.c
@@ -0,0 +1,16 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+
+
+void
+shiftbuffer(struct algorithm *algorithms, size_t nalgorithms, struct buffer *buffer)
+{
+ size_t i, consumed = SIZE_MAX;
+ for (i = 0; i < nalgorithms; i++)
+ consumed = MIN(consumed, algorithms[i].offset);
+ if (!consumed)
+ return;
+ for (i = 0; i < nalgorithms; i++)
+ algorithms[i].offset -= consumed;
+ memmove(&buffer->buf[0], &buffer->buf[consumed], buffer->length -= consumed);
+}