aboutsummaryrefslogtreecommitdiffstats
path: root/destroyhashers.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-08-28 16:42:05 +0200
committerMattias Andrée <maandree@kth.se>2024-08-28 16:42:05 +0200
commita24071ae913b223487df78859c8d830f9e69f580 (patch)
treee2ec712cc29461c82cfdd477e8b1ba961b50018d /destroyhashers.c
parentFirst commit (diff)
downloadanysum-a24071ae913b223487df78859c8d830f9e69f580.tar.gz
anysum-a24071ae913b223487df78859c8d830f9e69f580.tar.bz2
anysum-a24071ae913b223487df78859c8d830f9e69f580.tar.xz
Second commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'destroyhashers.c')
-rw-r--r--destroyhashers.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/destroyhashers.c b/destroyhashers.c
deleted file mode 100644
index 0f05c03..0000000
--- a/destroyhashers.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include "common.h"
-
-
-void
-destroyhashers(struct algorithm *algorithms, size_t nalgorithms)
-{
- size_t i;
- for (i = 0; i < nalgorithms; i++)
- if (algorithms[i].hasher.destroy)
- algorithms[i].hasher.destroy(&algorithms[i].hasher);
-}