test.h (263B)
1 #ifndef TEST_H 2 #define TEST_H 3 4 #include <stdbool.h> 5 #include <stddef.h> 6 7 void assert_str_eq(char* a, char* b); 8 void assert_float_eq(float a, float b); 9 void assert_size_eq(size_t a, size_t b); 10 void assert_int_eq(int a, int b); 11 void assert_bool(bool expr); 12 13 #endif