2013-05-30 18:56:00 +00:00
|
|
|
#ifndef DECO_H
|
|
|
|
#define DECO_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-10-15 11:37:31 +00:00
|
|
|
extern double tolerated_by_tissue[];
|
|
|
|
extern double buehlmann_N2_t_halflife[];
|
2014-09-15 12:09:00 +00:00
|
|
|
extern double tissue_inertgas_saturation[16];
|
|
|
|
extern double buehlmann_inertgas_a[16], buehlmann_inertgas_b[16];
|
|
|
|
extern double gf_low_pressure_this_dive;
|
|
|
|
|
2016-03-23 16:53:44 +00:00
|
|
|
extern int deco_allowed_depth(double tissues_tolerance, double surface_pressure, struct dive *dive, bool smooth);
|
2013-05-30 18:56:00 +00:00
|
|
|
|
2016-10-26 05:21:47 +00:00
|
|
|
double get_gf(double ambpressure_bar, const struct dive *dive);
|
|
|
|
|
2013-09-19 15:54:29 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // DECO_H
|