diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-02 21:21:36 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-03 20:43:14 -0800 |
commit | 3c31d0401dd9e4be2aa51e1bb2b72e0bc162cb9d (patch) | |
tree | 6c8936c2d6f0d2ad2c355a9155a21af8550a8fa6 /dive.h | |
parent | 8dbe3528b4ae6ab01d913d41d696c20319004508 (diff) | |
download | subsurface-3c31d0401dd9e4be2aa51e1bb2b72e0bc162cb9d.tar.gz |
First stab at deco calculations
This seems to give us roughly the right data but needs a lot more testing.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -572,6 +572,9 @@ extern void subsurface_command_line_exit(gint *, gchar ***); #define FRACTION(n,x) ((unsigned)(n)/(x)),((unsigned)(n)%(x)) +extern double add_segment(double pressure, struct gasmix *gasmix); +extern void clear_deco(void); + #ifdef DEBUGFILE extern char *debugfilename; extern FILE *debugfile; |