mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2025-01-05 01:31:48 +01:00
17 lines
249 B
C
17 lines
249 B
C
|
#ifndef VERSION_H__
|
||
|
#define VERSION_H__
|
||
|
|
||
|
|
||
|
typedef const struct {
|
||
|
const char *git_branch;
|
||
|
const char *git_tag;
|
||
|
const char *git_sha;
|
||
|
const char *git_message;
|
||
|
} version_t;
|
||
|
|
||
|
|
||
|
const version_t *version_get (void);
|
||
|
|
||
|
|
||
|
#endif
|