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