Cleanup: create equipment.h header

There is an equipment.c file, but no corresponding header. Move the
corresponding functions into a newly created header. This does not
improve compile time since, at least for now, equipment.h is included
in dive.h. But it makes things more consistent.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-05-30 20:51:30 +02:00 committed by Dirk Hohndel
parent 27d7f27409
commit 529bdef0d6
4 changed files with 92 additions and 72 deletions

View file

@ -10,6 +10,7 @@
#include <stdlib.h>
#include <stdarg.h>
#include <time.h>
#include "equipment.h"
#include "gettext.h"
#include "dive.h"
#include "display.h"