mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +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.
29 lines
753 B
C
29 lines
753 B
C
/*********************************** TRICK HEADER **************************
|
|
PURPOSE: (Test Baseball)
|
|
***************************************************************************/
|
|
|
|
#ifndef CANNON_JET_PROTO_H
|
|
#define CANNON_JET_PROTO_H
|
|
|
|
#include "cannon_aero.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int cannon_force_jet(CANNON_AERO*);
|
|
int cannon_init_aero(CANNON_AERO*) ;
|
|
int cannon_force_gravity(CANNON_AERO*) ;
|
|
int cannon_force_drag(CANNON_AERO*) ;
|
|
int cannon_force_lift(CANNON_AERO*) ;
|
|
int cannon_force_cross(CANNON_AERO*) ;
|
|
int cannon_collect_forces(CANNON_AERO*) ;
|
|
int cannon_integ_aero(CANNON_AERO*) ;
|
|
double cannon_impact_aero(CANNON_AERO*) ;
|
|
int cannon_aero_default_data(CANNON_AERO*) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|