mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 21:50:26 +00:00
17 lines
275 B
C
17 lines
275 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef SAVE_PROFILE_DATA_H
|
||
|
#define SAVE_PROFILE_DATA_H
|
||
|
|
||
|
#include "dive.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int save_profiledata(const char *filename, bool selected_only);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif // SAVE_PROFILE_DATA_H
|