diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-08-01 21:57:24 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-02 08:55:08 -0700 |
commit | 8c036234e240078c4d2d594d2b69458496982b01 (patch) | |
tree | 0cfdb61a6ea502d885db4a74a4d87b9ef04defd6 /core/subsurfacestartup.c | |
parent | 1c4a859c8d0b37b2e938209fe9c4d99e9758327a (diff) | |
download | subsurface-8c036234e240078c4d2d594d2b69458496982b01.tar.gz |
Cleanup: move sort_table() from subsurface_startup.c to divelist.c
The function is not only used at startup and arguably belongs
the the file with the rest of the low-level divelist functions.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/subsurfacestartup.c')
-rw-r--r-- | core/subsurfacestartup.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/core/subsurfacestartup.c b/core/subsurfacestartup.c index 2bb905217..1210004cb 100644 --- a/core/subsurfacestartup.c +++ b/core/subsurfacestartup.c @@ -112,23 +112,6 @@ struct units *get_units() } /* random helper functions, used here or elsewhere */ -static int sortfn(const void *_a, const void *_b) -{ - const struct dive *a = (const struct dive *)*(void **)_a; - const struct dive *b = (const struct dive *)*(void **)_b; - - if (a->when < b->when) - return -1; - if (a->when > b->when) - return 1; - return 0; -} - -void sort_table(struct dive_table *table) -{ - qsort(table->dives, table->nr, sizeof(struct dive *), sortfn); -} - const char *monthname(int mon) { static const char month_array[12][7] = { |