20 lines
289 B
C
20 lines
289 B
C
#ifndef TEST_UTILS_H
|
|
#define TEST_UTILS_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
#define ARRLEN(ARR) (sizeof ARR / sizeof ARR[0])
|
|
|
|
typedef struct {
|
|
const char *name;
|
|
const char *contents;
|
|
} asset_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // !TEST_UTILS_H
|