aboutsummaryrefslogtreecommitdiffstats
path: root/conversions.h
blob: f59fcc96be0fd2dcb0a5c71f00f4a18c1433d221 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * conversions.h
 *
 * Helpers to convert between different units
 *
 */
#ifdef __cplusplus
extern "C" {
#endif

void convert_volume_pressure(int ml, int mbar, double *v, double *p);
int convert_pressure(int mbar, double *p);

#ifdef __cplusplus
}
#endif