mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
58fb49f243
Both Subsurface and Subsurface-mobile will share the same version number moving forward. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
15 lines
204 B
C
15 lines
204 B
C
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char *subsurface_git_version(void);
|
|
const char *subsurface_canonical_version(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|