mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 04:04:39 +00:00
14 lines
203 B
C
14 lines
203 B
C
#ifndef __NB_VERSION_H__
|
|
#define __NB_VERSION_H__
|
|
|
|
typedef struct nb_version {
|
|
int major;
|
|
int minor;
|
|
int patch;
|
|
char full[64];
|
|
} nb_version_t;
|
|
|
|
void nb_get_version(nb_version_t* version);
|
|
|
|
#endif
|