2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
main.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Fri Aug 19 13:19:58 JST 1994
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
2000-05-01 13:42:38 +04:00
|
|
|
|
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2019-08-08 11:34:50 +03:00
|
|
|
/*!
|
|
|
|
* \mainpage Developers' documentation for Ruby
|
|
|
|
*
|
|
|
|
* This documentation is produced by applying Doxygen to
|
|
|
|
* <a href="https://github.com/ruby/ruby">Ruby's source code</a>.
|
|
|
|
* It is still under construction (and even not well-maintained).
|
|
|
|
* If you are familiar with Ruby's source code, please improve the doc.
|
|
|
|
*/
|
2005-12-19 17:31:09 +03:00
|
|
|
#undef RUBY_EXPORT
|
2008-05-31 10:17:45 +04:00
|
|
|
#include "ruby.h"
|
2012-11-20 16:57:49 +04:00
|
|
|
#include "vm_debug.h"
|
2007-12-21 07:17:17 +03:00
|
|
|
#ifdef HAVE_LOCALE_H
|
2007-12-21 05:52:23 +03:00
|
|
|
#include <locale.h>
|
2007-12-21 06:03:29 +03:00
|
|
|
#endif
|
2022-07-12 10:30:27 +03:00
|
|
|
#if defined RUBY_DEVEL && !defined RUBY_DEBUG_ENV
|
2017-06-30 07:19:12 +03:00
|
|
|
# define RUBY_DEBUG_ENV 1
|
|
|
|
#endif
|
2017-05-15 10:04:48 +03:00
|
|
|
#if defined RUBY_DEBUG_ENV && !RUBY_DEBUG_ENV
|
|
|
|
# undef RUBY_DEBUG_ENV
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2022-05-23 16:32:50 +03:00
|
|
|
static int
|
2022-01-15 17:10:48 +03:00
|
|
|
rb_main(int argc, char **argv)
|
2022-05-24 06:17:19 +03:00
|
|
|
{
|
|
|
|
RUBY_INIT_STACK;
|
|
|
|
ruby_init();
|
|
|
|
return ruby_run_node(ruby_options(argc, argv));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(__wasm__) && !defined(__EMSCRIPTEN__)
|
|
|
|
int rb_wasm_rt_start(int (main)(int argc, char **argv), int argc, char **argv);
|
|
|
|
#define rb_main(argc, argv) rb_wasm_rt_start(rb_main, argc, argv)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-06-28 18:22:30 +04:00
|
|
|
#ifdef RUBY_DEBUG_ENV
|
2007-06-29 11:57:24 +04:00
|
|
|
ruby_set_debug_option(getenv("RUBY_DEBUG"));
|
2005-12-12 03:36:54 +03:00
|
|
|
#endif
|
2007-12-21 07:17:17 +03:00
|
|
|
#ifdef HAVE_LOCALE_H
|
2007-12-21 05:52:23 +03:00
|
|
|
setlocale(LC_CTYPE, "");
|
2007-12-21 06:03:29 +03:00
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-09-29 12:45:24 +04:00
|
|
|
ruby_sysinit(&argc, &argv);
|
2022-05-23 16:32:50 +03:00
|
|
|
return rb_main(argc, argv);
|
2022-01-15 17:10:48 +03:00
|
|
|
}
|