diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2017-11-27 20:03:05 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-11-27 13:42:10 -0800 |
commit | 568db03228f3fcaafb0252d133ebc1d8c66923ed (patch) | |
tree | b94b92f6b4d45e42cab92b9af3e645bd5e770d6c /core/parse.h | |
parent | ddb9dba66cef3a1c88e0f91a4f65c44f5769b0f5 (diff) | |
download | subsurface-568db03228f3fcaafb0252d133ebc1d8c66923ed.tar.gz |
Move metric variable to parse.c
This is required when moving Shearwater DB parsing into parse-db.c
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Diffstat (limited to 'core/parse.h')
-rw-r--r-- | core/parse.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/parse.h b/core/parse.h index 14c24a1d8..f8af63d04 100644 --- a/core/parse.h +++ b/core/parse.h @@ -53,6 +53,8 @@ enum import_source { extern struct dive_table dive_table; extern struct dive_table *target_table; +extern int metric; + int trimspace(char *buffer); void clear_table(struct dive_table *table); void record_dive_to_table(struct dive *dive, struct dive_table *table); |