mirror of
https://github.com/nasa/trick.git
synced 2025-02-11 21:15:32 +00:00
20 lines
430 B
C
20 lines
430 B
C
/****************************** TRICK HEADER ******************************
|
|
PURPOSE: (Cannon_aero Prototypes)
|
|
Tutorial Section 9
|
|
***************************************************************************/
|
|
#ifndef CANNON_JET_PROTO_H
|
|
#define CANNON_JET_PROTO_H
|
|
#include "cannon_aero.h"
|
|
#include "cannon_aero_proto.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int cannon_force_jet(CANNON_AERO*) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|