Ruby 2.7.6p219 (2022-04-12 revision c9c2245c0a25176072e02db9254f0e0c84c805cd)
version.h
Go to the documentation of this file.
1/**********************************************************************
2
3 ruby/version.h -
4
5 $Author$
6 created at: Wed May 13 12:56:56 JST 2009
7
8 Copyright (C) 1993-2009 Yukihiro Matsumoto
9 Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
10 Copyright (C) 2000 Information-technology Promotion Agency, Japan
11
12**********************************************************************/
13
14/*
15 * This file contains only
16 * - never-changeable information, and
17 * - interfaces accessible from extension libraries.
18 *
19 * Never try to check RUBY_VERSION_CODE etc in extension libraries,
20 * check the features with mkmf.rb instead.
21 */
22
23#ifndef RUBY_VERSION_H
24#define RUBY_VERSION_H 1
25
26/* The origin. */
27#define RUBY_AUTHOR "Yukihiro Matsumoto"
28#define RUBY_BIRTH_YEAR 1993
29#define RUBY_BIRTH_MONTH 2
30#define RUBY_BIRTH_DAY 24
31
32/* API version */
33#define RUBY_API_VERSION_MAJOR 2
34#define RUBY_API_VERSION_MINOR 7
35#define RUBY_API_VERSION_TEENY 0
36#define RUBY_API_VERSION_CODE (RUBY_API_VERSION_MAJOR*10000+RUBY_API_VERSION_MINOR*100+RUBY_API_VERSION_TEENY)
37
38#ifdef RUBY_EXTERN
39#if defined(__cplusplus)
40extern "C" {
41#if 0
42} /* satisfy cc-mode */
43#endif
44#endif
45
47
48/*
49 * Interfaces from extension libraries.
50 *
51 * Before using these infos, think thrice whether they are really
52 * necessary or not, and if the answer was yes, think twice a week
53 * later again.
54 */
55RUBY_EXTERN const int ruby_api_version[3];
56RUBY_EXTERN const char ruby_version[];
58RUBY_EXTERN const char ruby_platform[];
60RUBY_EXTERN const char ruby_description[];
61RUBY_EXTERN const char ruby_copyright[];
62RUBY_EXTERN const char ruby_engine[];
63
65
66#if defined(__cplusplus)
67#if 0
68{ /* satisfy cc-mode */
69#endif
70} /* extern "C" { */
71#endif
72#endif
73
74#endif
const char ruby_description[]
Definition: version.c:43
const int ruby_api_version[]
Definition: iseq.h:15
#define RUBY_SYMBOL_EXPORT_BEGIN
#define RUBY_SYMBOL_EXPORT_END
#define RUBY_EXTERN
RUBY_EXTERN const int ruby_patchlevel
Definition: ruby.c:921
const char ruby_engine[]
Definition: version.c:46
const char ruby_platform[]
Definition: version.c:41
const char ruby_version[]
Definition: version.c:38
const char ruby_copyright[]
Definition: version.c:45
const char ruby_release_date[]
Definition: version.c:40