YAC
3.18.0
Yet Another Coupler
Loading...
Searching...
No Matches
yac_core_version_check.h
Go to the documentation of this file.
1
#ifndef YAC_CORE_VERSION_CHECK_H
2
#define YAC_CORE_VERSION_CHECK_H
3
4
#include "yac_config.h"
5
6
#define YAC_CORE_VERSION_GREATER_EQUAL(major, minor, patch) ( \
7
(YAC_CORE_VERSION_MAJOR > major) \
8
|| ( \
9
(YAC_CORE_VERSION_MAJOR == major) && \
10
(YAC_CORE_VERSION_MINOR > minor) \
11
) \
12
|| ( \
13
(YAC_CORE_VERSION_MAJOR == major) && \
14
(YAC_CORE_VERSION_MINOR == minor) && \
15
(YAC_CORE_VERSION_PATCH >= patch) \
16
) \
17
)
18
19
#endif
src
core
yac_core_version_check.h
Generated on Tue Jun 30 2026 14:08:01 for YAC by
1.11.0