aboutsummaryrefslogtreecommitdiffstats
path: root/shiftbuffer.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--shiftbuffer.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/shiftbuffer.c b/shiftbuffer.c
deleted file mode 100644
index 6a1213e..0000000
--- a/shiftbuffer.c
+++ /dev/null
@@ -1,16 +0,0 @@
-/* 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);
-}