mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 05:07:54 +00:00
9ddc786ace
Moved most of the rest of the sims to test. refs #191
17 lines
328 B
C
17 lines
328 B
C
|
|
#ifndef TEST_STRUCT_H
|
|
#define TEST_STRUCT_H
|
|
|
|
typedef struct {
|
|
|
|
int int1; /* -- Foo */
|
|
int int2; /* -- Foo */
|
|
long long1; /* -- Foo */
|
|
long long2; /* -- Foo */
|
|
double double1; /* -- Foo */
|
|
double double2; /* -- Foo */
|
|
|
|
} TEST_DATA_STRUCT ;
|
|
|
|
#endif
|