Ruby 3.3.5p100 (2024-09-03 revision ef084cc8f4958c1b6e4ead99136631bef6d8ddba)
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 3
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:46
const char ruby_engine[]
This is just "ruby" for us.
Definition version.c:78
const char ruby_platform[]
Target platform identifier, in a C string.
Definition version.c:66
const char ruby_version[]
Stringised version.
Definition version.c:63
const char ruby_copyright[]
Copyright notice.
Definition version.c:75
const char ruby_release_date[]
Date of release, in a C string.
Definition version.c:65
const int ruby_patchlevel
This is a monotonic increasing integer that describes specific "patch" level.
Definition version.c:67
const char ruby_description[]
This is what ruby -v prints to the standard error.
Definition version.c:68