diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-21 12:12:54 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-21 12:12:54 -0700 |
commit | 515a9171523f7d8aa85f2caab262ba7d6320c33c (patch) | |
tree | d1f49227a67701bacbba0679839fcba0d7b8f9d0 /dive.h | |
parent | 184eecf7c0dbcbdecba097411828afaac30773aa (diff) | |
download | subsurface-515a9171523f7d8aa85f2caab262ba7d6320c33c.tar.gz |
Add helper function for doing depth unit calculations
.. and use it for printing too.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -86,6 +86,8 @@ typedef struct { pressure_t start, end; } cylinder_t; +extern double get_depth_units(unsigned int mm, int *frac, const char **units); + static inline double mm_to_feet(int mm) { return mm * 0.00328084; |