aocc23

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

test_stack_sd.h (297B)


      1 #ifndef TEST_STACK_SD_H
      2 #define TEST_STACK_SD_H
      3 
      4 #include "../stack_sd.h"
      5 #include <CUnit/Basic.h>
      6 
      7 void test_stack_sd_init(void);
      8 void test_stack_sd_push(void);
      9 void test_stack_sd_get(void);
     10 void test_stack_sd_getlast(void);
     11 void test_stack_sd_pop(void);
     12 void test_stack_sd_lookup(void);
     13 
     14 #endif