diff options
| author | 2015-06-21 06:37:24 -0700 | |
|---|---|---|
| committer | 2015-06-21 07:45:22 -0700 | |
| commit | b27538feba70b942a9b5d3eb5eae171e04d52461 (patch) | |
| tree | 17fc2ee3ee6335e9e3c3ba9d4781e4848eae8665 /save-xml.c | |
| parent | 9d8b05f47e8d608a7a8b2d565905a2d6c1feb274 (diff) | |
| download | subsurface-b27538feba70b942a9b5d3eb5eae171e04d52461.tar.gz | |
Move helper declarations into a better header file
This way the helpers can be more easily used by other modules.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'save-xml.c')
| -rw-r--r-- | save-xml.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/save-xml.c b/save-xml.c index 620980a60..988ede1bf 100644 --- a/save-xml.c +++ b/save-xml.c @@ -13,6 +13,7 @@ #include "membuffer.h" #include "strndup.h" #include "git-access.h" +#include "qthelperfromc.h" /* * We're outputting utf8 in xml. @@ -360,8 +361,6 @@ static void save_dc(struct membuffer *b, struct dive *dive, struct divecomputer put_format(b, " </divecomputer>\n"); } -extern char * hashstring(char * filename); - static void save_picture(struct membuffer *b, struct picture *pic) { put_string(b, " <picture filename='"); |