aocc22

Advent of Code 2022
git clone git://www.tkruger.se/aocc22.git
Log | Files | Refs | README

test_ht.h (157B)


      1 #ifndef TEST_HT_H
      2 #define TEST_HT_H
      3 
      4 #include <CUnit/Basic.h>
      5 #include "../ht.h"
      6 
      7 void test_ht_init();
      8 void test_ht_lookup();
      9 void test_ht_insert();
     10 
     11 #endif