subsurface/core/gaspressures.h
Berthold Stoeger 8d423359a5 cleanup: constify populate_pressure_information()
This has only read access on the dive. Make the parameter const.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-01-20 10:01:50 -08:00

14 lines
288 B
C

// SPDX-License-Identifier: GPL-2.0
#ifndef GASPRESSURES_H
#define GASPRESSURES_H
#ifdef __cplusplus
extern "C" {
#endif
void populate_pressure_information(const struct dive *, const struct divecomputer *, struct plot_info *, int);
#ifdef __cplusplus
}
#endif
#endif // GASPRESSURES_H