aboutsummaryrefslogtreecommitdiffstats
path: root/inithashers.c
diff options
context:
space:
mode:
Diffstat (limited to 'inithashers.c')
-rw-r--r--inithashers.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/inithashers.c b/inithashers.c
deleted file mode 100644
index ff2dbfd..0000000
--- a/inithashers.c
+++ /dev/null
@@ -1,21 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include "common.h"
-
-
-size_t
-inithashers(struct algorithm *algorithms, size_t nalgorithms)
-{
- size_t i;
- for (i = 0; i < nalgorithms;) {
- if (libhashsum_init_hasher_from_string(&algorithms[i].hasher, algorithms[i].algostr)) {
- weprintf("%s:", algorithms[i].algostr);
- free(algorithms[i].result);
- /* keep order */
- memmove(&algorithms[i], &algorithms[i + 1U], (--nalgorithms - i) * sizeof(*algorithms));
- } else {
- algorithms[i].offset = 0;
- i++;
- }
- }
- return nalgorithms;
-}