mirror of
https://github.com/sigmasternchen/libargo
synced 2025-03-15 13:18:55 +00:00
27 lines
320 B
C
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
|