Projects/1BIT/summer-semester/IJC-2/htab_bucket_count.c
2026-04-14 19:28:46 +02:00

11 lines
No EOL
238 B
C

// htab_bucket_count.c
// Řešení IJC-DU2, příklad b), 22.4.2024
// Autor: Roman Nečas, FIT
// Přeloženo: gcc 11.4.0
#include "htab.h"
#include "htab_struct.h"
size_t htab_bucket_count(const htab_t *t) {
return t->arr_size;
}