subsurface/core/deco.h
Berthold Stoeger 821f68550d Cleanup: make local variables and functions in deco.c static
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2019-06-19 13:11:10 -07:00

23 lines
501 B
C

// SPDX-License-Identifier: GPL-2.0
#ifndef DECO_H
#define DECO_H
#ifdef __cplusplus
extern "C" {
#endif
extern const double buehlmann_N2_t_halflife[];
extern int deco_allowed_depth(double tissues_tolerance, double surface_pressure, const struct dive *dive, bool smooth);
double get_gf(struct deco_state *ds, double ambpressure_bar, const struct dive *dive);
extern double regressiona();
extern double regressionb();
extern void reset_regression();
#ifdef __cplusplus
}
#endif
#endif // DECO_H