aocc23

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

test_smallset.h (412B)


      1 #ifndef TEST_SMALLSET_H
      2 #define TEST_SMALLSET_H
      3 
      4 #include "../smallset.h"
      5 #include <CUnit/Basic.h>
      6 
      7 void test_smallset_init(void);
      8 void test_smallset_insert(void);
      9 void test_smallset_lookup(void);
     10 void test_smallset_intersection(void);
     11 void test_smallset_minus(void);
     12 void test_smallset_tonstr(void);
     13 void test_smallset_getone(void);
     14 void test_smallset_empty(void);
     15 void test_smallset_cardinality(void);
     16 
     17 #endif