Core: Rename functions to more generic names

Rename
 - dive_get_insertion_index() -> dive_table_get_insertion_index()
 - unregister_dive_from_table() -> remove_from_dive_table()
 - get_idx_in_table() -> get_idx_in_dive_table()
 - sort_table() -> sort_dive_table()
This will make it more straight-forward to generate these functions
from macros.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-11-24 10:11:07 +01:00 committed by Dirk Hohndel
parent 2802d42969
commit d1971a64f9
9 changed files with 22 additions and 22 deletions

View file

@ -610,7 +610,7 @@ int datatrak_import(struct memblock *mem, struct dive_table *table)
}
out:
taglist_cleanup(&g_tag_list);
sort_table(table);
sort_dive_table(table);
return rc;
bail:
return 1;