mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
17 lines
258 B
C
17 lines
258 B
C
|
/*
|
||
|
* 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
|