1
0
Fork 0
flightgear/src/FDM/LaRCsim/atmos_62.h
Edward d'Auvergne 9b7db929f2 LaRCsim FDM - detabbing of all files.
All '\t' have been replaced with 8 spaces, as most of the code is indented with spaces.
2015-12-10 10:07:21 +01:00

27 lines
356 B
C

/* a quick atmos_62.h */
/* UNITS
t_amb - degrees Rankine
p_amb - Pounds per square foot
*/
#ifndef _ATMOS_62_H
#define _ATMOS_62_H
#ifdef __cplusplus
extern "C" {
#endif
void ls_atmos( SCALAR altitude, SCALAR * sigma, SCALAR * v_sound,
SCALAR * t_amb, SCALAR * p_amb );
#ifdef __cplusplus
}
#endif
#endif /* _ATMOS_62_H */