mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
af5aa8a23d
gaspressure.h had definitions of non-exported structs, but did not declare the only function exported by gaspressure.c. Therefore, move the struct definitions into gaspressure.c and the declarations of the populate_pressure_information() function from profile.c to gaspressures.h. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
14 lines
276 B
C
14 lines
276 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef GASPRESSURES_H
|
|
#define GASPRESSURES_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void populate_pressure_information(struct dive *, struct divecomputer *, struct plot_info *, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif // GASPRESSURES_H
|