mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
8d423359a5
This has only read access on the dive. Make the parameter const. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
14 lines
288 B
C
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
|