mirror of
https://github.com/nasa/trick.git
synced 2025-01-05 04:44:16 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/********************************* TRICK HEADER *******************************
|
|
PURPOSE:
|
|
(Trick test)
|
|
REFERENCES:
|
|
(((Trick Simulation Environment) (NASA:JSC #37943)
|
|
(JSC/Engineering Directorate/Automation, Robotics and Simulation Division)
|
|
(Nov 2001)))
|
|
ASSUMPTIONS AND LIMITATIONS:
|
|
((None))
|
|
PROGRAMMERS:
|
|
((Keith Vetter) (LinCom) (November 2001))
|
|
*******************************************************************************/
|
|
|
|
#ifndef TEST_H
|
|
#define TEST_H
|
|
|
|
typedef struct { /* A ------------------------------------------------*/
|
|
|
|
double d ; /* -- A double */
|
|
int i ; /* -- An int */
|
|
int j ; /* -- An int */
|
|
|
|
} A ; /*--------------------------------------------------------------*/
|
|
|
|
typedef struct { /* B ------------------------------------------------*/
|
|
|
|
double d ; /* -- A double */
|
|
int i ; /* -- An int */
|
|
int j ; /* -- An int */
|
|
|
|
} B ; /*--------------------------------------------------------------*/
|
|
|
|
typedef struct { /* TEST ---------------------------------------------*/
|
|
|
|
A a ; /* -- A */
|
|
B b ; /* -- B */
|
|
|
|
} TEST ; /*------------------------------------------------------------*/
|
|
|
|
#endif
|