aocc23

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

test_ht.h (169B)


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