test_dlist.h 219 B

123456789101112131415
  1. #ifndef TEST_DLIST_H
  2. #define TEST_DLIST_H
  3. #include <setjmp.h>
  4. #include <stdarg.h>
  5. #include <stddef.h>
  6. #include <google/cmockery.h>
  7. #include <ds.h>
  8. void test_dlist_generally(void **state) {
  9. UNUSED(state);
  10. }
  11. #endif