mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-20 16:10:04 +01:00
14 lines
217 B
C
14 lines
217 B
C
|
|
#include "wlr/version.h"
|
||
|
|
|
||
|
|
int wlr_version_get_major(void) {
|
||
|
|
return WLR_VERSION_MAJOR;
|
||
|
|
}
|
||
|
|
|
||
|
|
int wlr_version_get_minor(void) {
|
||
|
|
return WLR_VERSION_MINOR;
|
||
|
|
}
|
||
|
|
|
||
|
|
int wlr_version_get_micro(void) {
|
||
|
|
return WLR_VERSION_MICRO;
|
||
|
|
}
|