Files
balatro-gba-chinese-jocker-…/tests/pool/test_structures.h
T
2025-10-17 18:05:36 -07:00

19 lines
269 B
C

#ifndef POOL_TEST_STRUCTURES
#define POOL_TEST_STRUCTURES
#include <stddef.h>
typedef struct
{
union
{
int my_int;
float my_float;
char my_char;
} GenericData;
int my_type;
} ChunkOfData;
#endif // POOL_TEST_STRUCTURES