2017-04-27 20:18:03 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-05-30 20:56:00 +02:00
|
|
|
#ifndef DECO_H
|
|
|
|
#define DECO_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2013-10-15 04:37:31 -07:00
|
|
|
extern double buehlmann_N2_t_halflife[];
|
2014-09-15 14:09:00 +02:00
|
|
|
|
2018-08-17 00:58:30 +02:00
|
|
|
extern int deco_allowed_depth(double tissues_tolerance, double surface_pressure, const struct dive *dive, bool smooth);
|
2013-05-30 20:56:00 +02:00
|
|
|
|
2017-11-22 20:42:33 +01:00
|
|
|
double get_gf(struct deco_state *ds, double ambpressure_bar, const struct dive *dive);
|
2016-10-26 16:21:47 +11:00
|
|
|
|
2013-09-19 10:54:29 -05:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-11 19:14:46 +01:00
|
|
|
#endif // DECO_H
|