libargo/test/test2.h
2021-05-05 22:50:29 +02:00

27 lines
320 B
C

#ifndef TEST2_H
#define TEST2_H
typedef struct {
int intValue;
} struct_t;
typedef struct {
int intValue;
long longValue;
double doubleValue;
float floatValue;
bool boolValue;
char* stringValue;
char* stringValue2;
struct_t structValue;
int* intPointer;
struct_t* structPointer;
} all_t;
#endif