Ruby 3.1.3p185 (2022-11-24 revision 1a6b16756e0ba6b95ab71a441357ed5484e33498)
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 1
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
142RUBY_EXTERN const char ruby_description[];
143
145RUBY_EXTERN const char ruby_copyright[];
146
151RUBY_EXTERN const char ruby_engine[];
152
156#endif
157
158#endif
#define RUBY_EXTERN
Declaration of externally visible global variables.
Definition: dllexport.h:47
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition: dllexport.h:106
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition: dllexport.h:97
const char ruby_description[]
This is what ruby -v prints to the standard error.
Definition: version.c:44
const int ruby_api_version[3]
API versions, in { major, minor, teeny } order.
Definition: version.c:27
const char ruby_engine[]
This is just "ruby" for us.
Definition: version.c:48
const char ruby_platform[]
Target platform identifier, in a C string.
Definition: version.c:42
const char ruby_version[]
Stringised version.
Definition: version.c:39
const char ruby_copyright[]
Copyright notice.
Definition: version.c:47
const char ruby_release_date[]
Date of release, in a C string.
Definition: version.c:41
const int ruby_patchlevel
This is a monotonic increasing integer that describes specific "patch" level.
Definition: version.c:43