// htab_struct.h // Řešení IJC-DU2, příklad b), 22.4.2024 // Autor: Roman Nečas, FIT // Přeloženo: gcc 11.4.0 #ifndef HTAB_STRUCT_H #define HTAB_STRUCT_H #include "htab.h" // Definicia privatnej struktury struct htab_item{ htab_pair_t pair; struct htab_item *next; }; struct htab{ size_t size; size_t arr_size; struct htab_item **arr_ptr; }; #endif // HTAB_STRUCT_H