From 67f703a794272d9a241fcaa96b09fdec7b8fc7e7 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sun, 24 Nov 2019 17:22:10 +0100 Subject: Cleanup: remove unused str_table functions Signed-off-by: David Oberhollenzer --- include/util/str_table.h | 2 -- lib/util/str_table.c | 15 --------------- 2 files changed, 17 deletions(-) diff --git a/include/util/str_table.h b/include/util/str_table.h index 60be1d1..61f8aa5 100644 --- a/include/util/str_table.h +++ b/include/util/str_table.h @@ -42,8 +42,6 @@ int str_table_get_index(str_table_t *table, const char *str, size_t *idx); SQFS_INTERNAL const char *str_table_get_string(str_table_t *table, size_t index); -SQFS_INTERNAL void str_table_reset_ref_count(str_table_t *table); - SQFS_INTERNAL void str_table_add_ref(str_table_t *table, size_t index); SQFS_INTERNAL void str_table_del_ref(str_table_t *table, size_t index); diff --git a/lib/util/str_table.c b/lib/util/str_table.c index 78206e8..513b243 100644 --- a/lib/util/str_table.c +++ b/lib/util/str_table.c @@ -150,21 +150,6 @@ static str_bucket_t *bucket_by_index(str_table_t *table, size_t index) return bucket; } -void str_table_reset_ref_count(str_table_t *table) -{ - str_bucket_t *bucket; - size_t i; - - for (i = 0; i < table->num_buckets; ++i) { - bucket = table->buckets[i]; - - while (bucket != NULL) { - bucket->refcount = 0; - bucket = bucket->next; - } - } -} - void str_table_add_ref(str_table_t *table, size_t index) { str_bucket_t *bucket = bucket_by_index(table, index); -- cgit v1.2.3