21 lines
601 B
C
Vendored
21 lines
601 B
C
Vendored
/* Zeta API - Z/constants/version.h
|
|
______ ______________ ___
|
|
|__ / | ___|___ ___|/ \
|
|
/ /__| __| | | / - \
|
|
/______|_____| |__| /__/ \__\
|
|
Copyright (C) 2006-2024 Manuel Sainz de Baranda y Goñi.
|
|
Released under the terms of the GNU Lesser General Public License v3. */
|
|
|
|
#ifndef Z_constants_version_H
|
|
#define Z_constants_version_H
|
|
|
|
#include <Z/macros/version.h>
|
|
|
|
#define Z_LIBRARY_VERSION Z_VERSION(0,1,0)
|
|
#define Z_LIBRARY_VERSION_MAJOR 0
|
|
#define Z_LIBRARY_VERSION_MINOR 1
|
|
#define Z_LIBRARY_VERSION_MICRO 0
|
|
#define Z_LIBRARY_VERSION_STRING "0.1"
|
|
|
|
#endif /* Z_constants_version_H */
|