diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-01-01 01:30:13 +0100 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2021-01-01 21:10:10 +0100 |
commit | 60999e3a3933919e873337df8a74d9fab26bc2cf (patch) | |
tree | df3e481c72c45b82aaec685dc523a1b352f19508 /core/gas.h | |
parent | 1270d9470129901215fc2173934602d7cd77836f (diff) | |
download | subsurface-60999e3a3933919e873337df8a74d9fab26bc2cf.tar.gz |
core: make gasmix_is_invalid globally accessible
The statistics module will use that to bin dives by gasmix.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/gas.h')
-rw-r--r-- | core/gas.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/gas.h b/core/gas.h index 5e0f4675f..cd7c9e389 100644 --- a/core/gas.h +++ b/core/gas.h @@ -69,6 +69,7 @@ extern fraction_t get_gas_component_fraction(struct gasmix mix, enum gas_compone extern void fill_pressures(struct gas_pressures *pressures, double amb_pressure, struct gasmix mix, double po2, enum divemode_t dctype); extern bool gasmix_is_air(struct gasmix gasmix); +extern bool gasmix_is_invalid(struct gasmix mix); extern enum gastype gasmix_to_type(struct gasmix mix); extern const char *gastype_name(enum gastype type); |