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

#ifndef PSXC_TEST_H_
#define PSXC_TEST_H_
#include <stddef.h>
typedef struct {
const char *name;
void (*test)(void);
} test_case_t;
extern const test_case_t TEST_CASES[];
extern const size_t NUM_TEST_CASES;
#endif