diff options
Diffstat (limited to '')
-rw-r--r-- | destroyhashers.c | 12 |
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); -} |