libargo/test/test2.h

28 lines
320 B
C
Raw Normal View History

2021-05-04 14:18:43 +00:00
#ifndef TEST2_H
#define TEST2_H
typedef struct {
int intValue;
} struct_t;
typedef struct {
int intValue;
long longValue;
double doubleValue;
float floatValue;
bool boolValue;
2021-05-05 20:50:29 +00:00
char* stringValue;
2021-05-04 14:18:43 +00:00
char* stringValue2;
struct_t structValue;
int* intPointer;
struct_t* structPointer;
} all_t;
#endif