Ruby 3.5.0dev (2025-02-22 revision 412997300569c1853c09813e4924b6df3d7e8669)
version.h
Go to the documentation of this file.
1#ifndef RUBY_VERSION_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RUBY_VERSION_H 1
32#define RUBY_AUTHOR "Yukihiro Matsumoto"
33
35#define RUBY_BIRTH_YEAR 1993
36
38#define RUBY_BIRTH_MONTH 2
39
41#define RUBY_BIRTH_DAY 24
42
64#define RUBY_API_VERSION_MAJOR 3
65
70#define RUBY_API_VERSION_MINOR 5
71
76#define RUBY_API_VERSION_TEENY 0
77
84#define RUBY_API_VERSION_CODE (RUBY_API_VERSION_MAJOR*10000+RUBY_API_VERSION_MINOR*100+RUBY_API_VERSION_TEENY)
85
88#ifdef RUBY_EXTERN
89/* Internal note: this file could be included from verconf.mk _before_
90 * generating config.h, on Windows. The #ifdef above is to trick such
91 * situation. */
93
94
105RUBY_EXTERN const int ruby_api_version[3];
106
113RUBY_EXTERN const char ruby_version[];
114
116RUBY_EXTERN const char ruby_release_date[];
117
128RUBY_EXTERN const char ruby_platform[];
129
137
143RUBY_EXTERN const char ruby_description[];
144
146RUBY_EXTERN const char ruby_copyright[];
147
152RUBY_EXTERN const char ruby_engine[];
153
157#endif
158
159#endif
#define RUBY_EXTERN
Declaration of externally visible global variables.
Definition dllexport.h:45
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition dllexport.h:74
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition dllexport.h:65
const int ruby_api_version[3]
API versions, in { major, minor, teeny } order.
Definition version.c:47
const char ruby_engine[]
This is just "ruby" for us.
Definition version.c:84
const char ruby_platform[]
Target platform identifier, in a C string.
Definition version.c:72
const char ruby_version[]
Stringised version.
Definition version.c:69
const char ruby_copyright[]
Copyright notice.
Definition version.c:81
const char ruby_release_date[]
Date of release, in a C string.
Definition version.c:71
const int ruby_patchlevel
This is a monotonic increasing integer that describes specific "patch" level.
Definition version.c:73
const char ruby_description[]
This is what ruby -v prints to the standard error.
Definition version.c:74