psx emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
227 B

  1. #ifndef PSXC_TEST_H_
  2. #define PSXC_TEST_H_
  3. #include <stddef.h>
  4. typedef struct {
  5. const char *name;
  6. void (*test)(void);
  7. } test_case_t;
  8. extern const test_case_t TEST_CASES[];
  9. extern const size_t NUM_TEST_CASES;
  10. #endif