YAC 3.13.0
Yet Another Coupler
Loading...
Searching...
No Matches
yac_version_check.h
Go to the documentation of this file.
1#ifndef YAC_VERSION_CHECK_H
2#define YAC_VERSION_CHECK_H
3
4#include "yac_config.h"
5
6#define YAC_VERSION_GREATER_EQUAL(major, minor, patch) ( \
7 (YAC_VERSION_MAJOR > major) \
8 || ( \
9 (YAC_VERSION_MAJOR == major) && \
10 (YAC_VERSION_MINOR > minor) \
11 ) \
12 || ( \
13 (YAC_VERSION_MAJOR == major) && \
14 (YAC_VERSION_MINOR == minor) && \
15 (YAC_VERSION_PATCH >= patch) \
16 ) \
17)
18
19#endif