12 lines
190 B
C
12 lines
190 B
C
#ifndef TEST_UTILS_H
|
|
#define TEST_UTILS_H
|
|
|
|
#define ARRLEN(ARR) (sizeof ARR / sizeof ARR[0])
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
const char *contents;
|
|
} asset_t;
|
|
|
|
#endif // !TEST_UTILS_H
|