tester.h 238 B

12345678910
  1. #ifndef UTIL_TESTER_H_GUARD_
  2. #define UTIL_TESTER_H_GUARD_
  3. #include <stdbool.h>
  4. void SEx_TestBool ( char * testname, bool input, bool expected );
  5. void SEx_TestLines ( char * testname, const char * input, const char * expected );
  6. #endif