subsurface/core/gaspressures.h
Berthold Stoeger af5aa8a23d Cleanup: Make gaspressures.h a regular include file
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>
2019-06-19 13:11:10 -07:00

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