subsurface/core/worldmap-save.h
Berthold Stoeger 8391d926c7 Cleanup: remove const bool parameters and return types
These just make no sense. Since the value is copied, it
has no meaning to the caller whether the function can
change the value (and vice versa for return types).

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2020-02-09 12:13:18 -08:00

15 lines
239 B
C

// SPDX-License-Identifier: GPL-2.0
#ifndef WORLDMAP_SAVE_H
#define WORLDMAP_SAVE_H
#ifdef __cplusplus
extern "C" {
#endif
extern void export_worldmap_HTML(const char *file_name, bool selected_only);
#ifdef __cplusplus
}
#endif
#endif