mirror of
https://github.com/nasa/trick.git
synced 2024-12-23 15:02:25 +00:00
30 lines
607 B
C
30 lines
607 B
C
/*
|
|
* $Id: cannon_integ_proto.h 1496 2011-04-12 12:27:43Z wwoodard $
|
|
*/
|
|
|
|
/*************************************************************************
|
|
PURPOSE: (Cannonball Prototypes)
|
|
**************************************************************************/
|
|
|
|
#ifndef _cannon_proto_h_
|
|
#define _cannon_proto_h_
|
|
#include <stdio.h>
|
|
#include "cannon.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int cannon_integ(CANNON*) ;
|
|
int cannon_integ2(CANNON*) ;
|
|
int cannon_deriv(CANNON*) ;
|
|
int cannon_deriv2(CANNON*) ;
|
|
int cannon_init(CANNON*) ;
|
|
int cannon_default_data(CANNON*) ;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|