diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-02 10:38:34 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-02 10:39:35 -0700 |
commit | 63c50805610c8d0dd0ec85dc62b3007df4e5dc0b (patch) | |
tree | 7ac298d79f30d4ca92fd70fd326fd9b7513812db /divelist.h | |
parent | e6ec626c9758d30c3f714ddbf6f79195e710e037 (diff) | |
download | subsurface-63c50805610c8d0dd0ec85dc62b3007df4e5dc0b.tar.gz |
Move gas string computation into core logic code
This is now a helper called from the Gtk UI code (and will soon be used by
the Qt UI code).
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divelist.h')
-rw-r--r-- | divelist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/divelist.h b/divelist.h index f3054d213..d17ea7c12 100644 --- a/divelist.h +++ b/divelist.h @@ -32,6 +32,7 @@ extern void export_all_dives_uddf_cb(); extern void process_dives(bool imported, bool prefer_imported); extern char *get_dive_date_string(timestamp_t when); extern char *get_trip_date_string(timestamp_t when, int nr); +extern char *get_nitrox_string(struct dive *dive); extern void clear_trip_indexes(void); extern dive_trip_t *find_trip_by_idx(int idx); extern int dive_nr_sort(int idx_a, int idx_b, timestamp_t when_a, timestamp_t when_b); |