2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
|
|
|
intern.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Thu Jun 10 14:22:17 JST 1993
|
|
|
|
|
2001-02-14 08:52:06 +03:00
|
|
|
Copyright (C) 1993-2001 Yukihiro Matsumoto
|
2000-05-01 13:42:38 +04:00
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 08:53:16 +04:00
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
2000-05-01 13:42:38 +04:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions and variables that are used by more than one source file of
|
|
|
|
* the kernel.
|
1998-01-16 15:19:09 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* array.c */
|
2000-11-20 10:31:55 +03:00
|
|
|
void rb_mem_clear _((register VALUE*, register long));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_assoc_new _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_new _((void));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_ary_new2 _((long));
|
|
|
|
VALUE rb_ary_new3 __((long,...));
|
|
|
|
VALUE rb_ary_new4 _((long, VALUE *));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_ary_freeze _((VALUE));
|
|
|
|
VALUE rb_ary_aref _((int, VALUE*, VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_ary_store _((VALUE, long, VALUE));
|
2001-07-14 19:17:19 +04:00
|
|
|
VALUE rb_ary_dup _((VALUE));
|
2001-06-19 08:35:17 +04:00
|
|
|
VALUE rb_ary_to_ary _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_ary_to_s _((VALUE));
|
|
|
|
VALUE rb_ary_push _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_pop _((VALUE));
|
|
|
|
VALUE rb_ary_shift _((VALUE));
|
|
|
|
VALUE rb_ary_unshift _((VALUE, VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_ary_entry _((VALUE, long));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_ary_each _((VALUE));
|
|
|
|
VALUE rb_ary_join _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_print_on _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_reverse _((VALUE));
|
|
|
|
VALUE rb_ary_sort _((VALUE));
|
|
|
|
VALUE rb_ary_sort_bang _((VALUE));
|
|
|
|
VALUE rb_ary_delete _((VALUE, VALUE));
|
2000-01-05 07:41:21 +03:00
|
|
|
VALUE rb_ary_delete_at _((VALUE, long));
|
2001-03-13 08:45:13 +03:00
|
|
|
VALUE rb_ary_clear _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_ary_plus _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_concat _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_assoc _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_rassoc _((VALUE, VALUE));
|
|
|
|
VALUE rb_ary_includes _((VALUE, VALUE));
|
2001-05-06 19:06:00 +04:00
|
|
|
VALUE rb_protect_inspect _((VALUE(*)(),VALUE,VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_inspecting_p _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* bignum.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_big_clone _((VALUE));
|
|
|
|
void rb_big_2comp _((VALUE));
|
|
|
|
VALUE rb_big_norm _((VALUE));
|
|
|
|
VALUE rb_uint2big _((unsigned long));
|
|
|
|
VALUE rb_int2big _((long));
|
|
|
|
VALUE rb_uint2inum _((unsigned long));
|
|
|
|
VALUE rb_int2inum _((long));
|
2000-01-05 07:41:21 +03:00
|
|
|
VALUE rb_cstr2inum _((const char*, int));
|
|
|
|
VALUE rb_str2inum _((VALUE, int));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_big2str _((VALUE, int));
|
|
|
|
long rb_big2long _((VALUE));
|
|
|
|
#define rb_big2int(x) rb_big2long(x)
|
|
|
|
unsigned long rb_big2ulong _((VALUE));
|
|
|
|
#define rb_big2uint(x) rb_big2ulong(x)
|
|
|
|
VALUE rb_dbl2big _((double));
|
|
|
|
double rb_big2dbl _((VALUE));
|
|
|
|
VALUE rb_big_plus _((VALUE, VALUE));
|
|
|
|
VALUE rb_big_minus _((VALUE, VALUE));
|
|
|
|
VALUE rb_big_mul _((VALUE, VALUE));
|
2000-05-12 13:07:57 +04:00
|
|
|
VALUE rb_big_divmod _((VALUE, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_big_pow _((VALUE, VALUE));
|
|
|
|
VALUE rb_big_and _((VALUE, VALUE));
|
|
|
|
VALUE rb_big_or _((VALUE, VALUE));
|
|
|
|
VALUE rb_big_xor _((VALUE, VALUE));
|
|
|
|
VALUE rb_big_lshift _((VALUE, VALUE));
|
1999-12-06 12:04:03 +03:00
|
|
|
VALUE rb_big_rand _((VALUE, double));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* class.c */
|
2001-07-18 09:56:05 +04:00
|
|
|
VALUE rb_class_boot _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_class_new _((VALUE));
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE rb_mod_clone _((VALUE));
|
|
|
|
VALUE rb_mod_dup _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_singleton_class_new _((VALUE));
|
|
|
|
VALUE rb_singleton_class_clone _((VALUE));
|
|
|
|
void rb_singleton_class_attached _((VALUE,VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_define_class_id _((ID, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_module_new _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_define_module_id _((ID));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mod_included_modules _((VALUE));
|
2001-07-24 13:07:33 +04:00
|
|
|
VALUE rb_mod_include_p _((VALUE, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mod_ancestors _((VALUE));
|
|
|
|
VALUE rb_class_instance_methods _((int, VALUE*, VALUE));
|
|
|
|
VALUE rb_class_protected_instance_methods _((int, VALUE*, VALUE));
|
|
|
|
VALUE rb_class_private_instance_methods _((int, VALUE*, VALUE));
|
2001-05-30 13:12:34 +04:00
|
|
|
VALUE rb_obj_singleton_methods _((int, VALUE*, VALUE));
|
2001-05-02 08:22:21 +04:00
|
|
|
void rb_define_method_id _((VALUE, ID, VALUE (*)(ANYARGS), int));
|
2000-12-18 12:46:21 +03:00
|
|
|
void rb_frozen_class_p _((VALUE));
|
|
|
|
void rb_undef _((VALUE, ID));
|
2001-05-02 08:22:21 +04:00
|
|
|
void rb_define_protected_method _((VALUE, const char*, VALUE (*)(ANYARGS), int));
|
|
|
|
void rb_define_private_method _((VALUE, const char*, VALUE (*)(ANYARGS), int));
|
|
|
|
void rb_define_singleton_method _((VALUE, const char*, VALUE(*)(ANYARGS), int));
|
|
|
|
void rb_define_private_method _((VALUE, const char*, VALUE(*)(ANYARGS), int));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_singleton_class _((VALUE));
|
|
|
|
/* enum.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_enum_length _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* error.c */
|
1999-10-29 13:25:48 +04:00
|
|
|
EXTERN int ruby_nerrs;
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_exc_new _((VALUE, const char*, long));
|
|
|
|
VALUE rb_exc_new2 _((VALUE, const char*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_exc_new3 _((VALUE, VALUE));
|
2001-01-10 10:30:18 +03:00
|
|
|
NORETURN(void rb_loaderror __((const char*, ...)));
|
2001-07-02 12:46:28 +04:00
|
|
|
NORETURN(void rb_name_error __((VALUE id, const char*, ...)));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_compile_error __((const char*, ...));
|
|
|
|
void rb_compile_error_append __((const char*, ...));
|
2001-02-02 14:38:20 +03:00
|
|
|
NORETURN(void rb_load_fail _((char*)));
|
2001-01-10 10:30:18 +03:00
|
|
|
NORETURN(void rb_error_frozen _((char*)));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* eval.c */
|
2001-01-10 10:30:18 +03:00
|
|
|
NORETURN(void rb_exc_raise _((VALUE)));
|
|
|
|
NORETURN(void rb_exc_fatal _((VALUE)));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_remove_method _((VALUE, const char*));
|
|
|
|
void rb_disable_super _((VALUE, const char*));
|
|
|
|
void rb_enable_super _((VALUE, const char*));
|
1998-01-16 15:19:09 +03:00
|
|
|
void rb_clear_cache _((void));
|
|
|
|
void rb_alias _((VALUE, ID, ID));
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_attr _((VALUE,ID,int,int,int));
|
1998-01-16 15:19:09 +03:00
|
|
|
int rb_method_boundp _((VALUE, ID, int));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_dvar_defined _((ID));
|
2000-02-01 06:12:21 +03:00
|
|
|
VALUE rb_dvar_curr _((ID));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_dvar_ref _((ID));
|
|
|
|
void rb_dvar_asgn _((ID, VALUE));
|
|
|
|
void rb_dvar_push _((ID, VALUE));
|
|
|
|
VALUE rb_eval_cmd _((VALUE, VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
int rb_respond_to _((VALUE, ID));
|
|
|
|
void rb_interrupt _((void));
|
|
|
|
VALUE rb_apply _((VALUE, ID, VALUE));
|
|
|
|
void rb_backtrace _((void));
|
|
|
|
ID rb_frame_last_func _((void));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_obj_instance_eval _((int, VALUE*, VALUE));
|
|
|
|
void rb_load _((VALUE, int));
|
|
|
|
void rb_load_protect _((VALUE, int, int*));
|
2001-01-10 10:30:18 +03:00
|
|
|
NORETURN(void rb_jump_tag _((int)));
|
2000-09-22 22:15:52 +04:00
|
|
|
int rb_provided _((const char*));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_provide _((const char*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_f_require _((VALUE, VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_obj_call_init _((VALUE, int, VALUE*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_class_new_instance _((int, VALUE*, VALUE));
|
|
|
|
VALUE rb_f_lambda _((void));
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE rb_protect _((VALUE (*)(VALUE), VALUE, int*));
|
2001-05-06 19:06:00 +04:00
|
|
|
void rb_set_end_proc _((void (*)(VALUE), VALUE));
|
1999-11-26 12:07:26 +03:00
|
|
|
void rb_mark_end_proc _((void));
|
2000-12-06 08:29:05 +03:00
|
|
|
void rb_exec_end_proc _((void));
|
2000-11-27 12:23:38 +03:00
|
|
|
void ruby_finalize _((void));
|
|
|
|
void ruby_stop _((int));
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_gc_mark_threads _((void));
|
|
|
|
void rb_thread_start_timer _((void));
|
|
|
|
void rb_thread_stop_timer _((void));
|
|
|
|
void rb_thread_schedule _((void));
|
|
|
|
void rb_thread_wait_fd _((int));
|
1999-08-13 09:45:20 +04:00
|
|
|
int rb_thread_fd_writable _((int));
|
|
|
|
void rb_thread_fd_close _((int));
|
1999-01-20 07:59:39 +03:00
|
|
|
int rb_thread_alone _((void));
|
2000-05-17 08:38:19 +04:00
|
|
|
void rb_thread_polling _((void));
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_thread_sleep _((int));
|
|
|
|
void rb_thread_sleep_forever _((void));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_thread_stop _((void));
|
|
|
|
VALUE rb_thread_wakeup _((VALUE));
|
|
|
|
VALUE rb_thread_run _((VALUE));
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE rb_thread_create _((VALUE (*)(ANYARGS), void*));
|
1999-01-20 07:59:39 +03:00
|
|
|
int rb_thread_scope_shared_p _((void));
|
|
|
|
void rb_thread_interrupt _((void));
|
|
|
|
void rb_thread_trap_eval _((VALUE, int));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_thread_signal_raise _((char*));
|
2001-05-02 08:22:21 +04:00
|
|
|
int rb_thread_select(ANYARGS);
|
|
|
|
void rb_thread_wait_for(ANYARGS);
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_thread_current _((void));
|
|
|
|
VALUE rb_thread_main _((void));
|
|
|
|
VALUE rb_thread_local_aref _((VALUE, ID));
|
|
|
|
VALUE rb_thread_local_aset _((VALUE, ID, VALUE));
|
2000-11-27 12:23:38 +03:00
|
|
|
void rb_thread_atfork _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* file.c */
|
1999-08-13 09:45:20 +04:00
|
|
|
int eaccess _((const char*, int));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_file_s_expand_path _((int, VALUE *));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_file_const _((const char*, VALUE));
|
2001-07-14 19:17:19 +04:00
|
|
|
int rb_find_file_noext _((VALUE*));
|
|
|
|
VALUE rb_find_file _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* gc.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_gc_mark_locations _((VALUE*, VALUE*));
|
|
|
|
void rb_mark_tbl _((struct st_table*));
|
|
|
|
void rb_mark_hash _((struct st_table*));
|
2001-03-19 06:20:24 +03:00
|
|
|
void rb_gc_mark_maybe _((VALUE));
|
|
|
|
void rb_gc_mark _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_gc_force_recycle _((VALUE));
|
|
|
|
void rb_gc _((void));
|
|
|
|
void rb_gc_call_finalizer_at_exit _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* hash.c */
|
|
|
|
VALUE rb_hash _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_hash_new _((void));
|
|
|
|
VALUE rb_hash_freeze _((VALUE));
|
|
|
|
VALUE rb_hash_aref _((VALUE, VALUE));
|
|
|
|
VALUE rb_hash_aset _((VALUE, VALUE, VALUE));
|
2000-07-04 11:04:42 +04:00
|
|
|
VALUE rb_hash_delete_if _((VALUE));
|
2001-07-24 13:07:33 +04:00
|
|
|
VALUE rb_hash_delete _((VALUE,VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
int rb_path_check _((char *));
|
|
|
|
int rb_env_path_tainted _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* io.c */
|
2000-05-18 08:32:13 +04:00
|
|
|
EXTERN VALUE rb_fs;
|
|
|
|
EXTERN VALUE rb_output_fs;
|
|
|
|
EXTERN VALUE rb_rs;
|
|
|
|
EXTERN VALUE rb_default_rs;
|
|
|
|
EXTERN VALUE rb_output_rs;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_io_write _((VALUE, VALUE));
|
|
|
|
VALUE rb_io_gets _((VALUE));
|
|
|
|
VALUE rb_io_getc _((VALUE));
|
|
|
|
VALUE rb_io_ungetc _((VALUE, VALUE));
|
|
|
|
VALUE rb_io_close _((VALUE));
|
|
|
|
VALUE rb_io_eof _((VALUE));
|
|
|
|
VALUE rb_io_binmode _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_file_open _((const char*, const char*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_gets _((void));
|
2001-07-03 11:29:00 +04:00
|
|
|
/* marshal.c */
|
|
|
|
VALUE rb_marshal_dump _((VALUE, VALUE));
|
|
|
|
VALUE rb_marshal_load _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* numeric.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_num_zerodiv _((void));
|
|
|
|
VALUE rb_num_coerce_bin _((VALUE, VALUE));
|
|
|
|
VALUE rb_float_new _((double));
|
|
|
|
VALUE rb_num2fix _((VALUE));
|
|
|
|
VALUE rb_fix2str _((VALUE, int));
|
|
|
|
VALUE rb_fix_upto _((VALUE, VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* object.c */
|
|
|
|
int rb_eql _((VALUE, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_any_to_s _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_inspect _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_obj_is_instance_of _((VALUE, VALUE));
|
|
|
|
VALUE rb_obj_is_kind_of _((VALUE, VALUE));
|
|
|
|
VALUE rb_obj_alloc _((VALUE));
|
|
|
|
VALUE rb_obj_clone _((VALUE));
|
2000-07-17 13:38:10 +04:00
|
|
|
VALUE rb_obj_dup _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_obj_taint _((VALUE));
|
|
|
|
VALUE rb_obj_tainted _((VALUE));
|
|
|
|
VALUE rb_obj_untaint _((VALUE));
|
2000-05-12 13:07:57 +04:00
|
|
|
VALUE rb_obj_freeze _((VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_obj_id _((VALUE));
|
2001-07-14 19:17:19 +04:00
|
|
|
VALUE rb_obj_type _((VALUE));
|
|
|
|
VALUE rb_class_real _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_convert_type _((VALUE,int,const char*,const char*));
|
2000-11-13 08:39:35 +03:00
|
|
|
VALUE rb_to_int _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_Integer _((VALUE));
|
|
|
|
VALUE rb_Float _((VALUE));
|
|
|
|
VALUE rb_String _((VALUE));
|
|
|
|
VALUE rb_Array _((VALUE));
|
|
|
|
/* parse.y */
|
2000-05-18 08:32:13 +04:00
|
|
|
EXTERN int ruby_sourceline;
|
|
|
|
EXTERN char *ruby_sourcefile;
|
1999-11-04 11:39:57 +03:00
|
|
|
#define yyparse rb_yyparse
|
|
|
|
#define yylex rb_yylex
|
|
|
|
#define yyerror rb_yyerror
|
|
|
|
#define yylval rb_yylval
|
|
|
|
#define yychar rb_yychar
|
|
|
|
#define yydebug rb_yydebug
|
1998-01-16 15:19:09 +03:00
|
|
|
int yyparse _((void));
|
1999-01-20 07:59:39 +03:00
|
|
|
ID rb_id_attrset _((ID));
|
|
|
|
void rb_parser_append_print _((void));
|
|
|
|
void rb_parser_while_loop _((int, int));
|
1999-12-14 09:50:43 +03:00
|
|
|
int rb_is_const_id _((ID));
|
1998-01-16 15:19:09 +03:00
|
|
|
int rb_is_instance_id _((ID));
|
2000-05-12 13:07:57 +04:00
|
|
|
int rb_is_class_id _((ID));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_backref_get _((void));
|
|
|
|
void rb_backref_set _((VALUE));
|
|
|
|
VALUE rb_lastline_get _((void));
|
|
|
|
void rb_lastline_set _((VALUE));
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE rb_sym_all_symbols _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* process.c */
|
1999-08-13 09:45:20 +04:00
|
|
|
int rb_proc_exec _((const char*));
|
1998-01-16 15:19:09 +03:00
|
|
|
void rb_syswait _((int));
|
2001-02-16 10:53:21 +03:00
|
|
|
VALUE rb_proc_times _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* range.c */
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_range_new _((VALUE, VALUE, int));
|
|
|
|
VALUE rb_range_beg_len _((VALUE, long*, long*, long, int));
|
1999-12-07 12:25:55 +03:00
|
|
|
VALUE rb_length_by_each _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* re.c */
|
2000-11-20 10:31:55 +03:00
|
|
|
int rb_memcmp _((char*,char*,long));
|
2001-07-24 13:07:33 +04:00
|
|
|
int rb_memcicmp _((char*,char*,long));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_reg_nth_defined _((int, VALUE));
|
|
|
|
VALUE rb_reg_nth_match _((int, VALUE));
|
|
|
|
VALUE rb_reg_last_match _((VALUE));
|
|
|
|
VALUE rb_reg_match_pre _((VALUE));
|
|
|
|
VALUE rb_reg_match_post _((VALUE));
|
|
|
|
VALUE rb_reg_match_last _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_reg_new _((const char*, long, int));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_reg_match _((VALUE, VALUE));
|
|
|
|
VALUE rb_reg_match2 _((VALUE));
|
|
|
|
int rb_reg_options _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_set_kcode _((const char*));
|
2000-02-08 11:54:01 +03:00
|
|
|
const char* rb_get_kcode _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* ruby.c */
|
1999-08-13 09:45:20 +04:00
|
|
|
EXTERN VALUE rb_argv;
|
|
|
|
EXTERN VALUE rb_argv0;
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_load_file _((char*));
|
|
|
|
void ruby_script _((char*));
|
1998-01-16 15:19:09 +03:00
|
|
|
void ruby_prog_init _((void));
|
1999-01-20 07:59:39 +03:00
|
|
|
void ruby_set_argv _((int, char**));
|
|
|
|
void ruby_process_options _((int, char**));
|
|
|
|
void ruby_load_script _((void));
|
2000-08-02 13:22:27 +04:00
|
|
|
void ruby_init_loadpath _((void));
|
|
|
|
void ruby_incpush _((const char*));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* signal.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_f_kill _((int, VALUE*));
|
|
|
|
void rb_gc_mark_trap_list _((void));
|
|
|
|
#ifdef POSIX_SIGNAL
|
|
|
|
#define posix_signal ruby_posix_signal
|
2001-05-02 08:22:21 +04:00
|
|
|
void posix_signal _((int, RETSIGTYPE (*)(int)));
|
1999-01-20 07:59:39 +03:00
|
|
|
#endif
|
1998-01-16 15:19:09 +03:00
|
|
|
void rb_trap_exit _((void));
|
|
|
|
void rb_trap_exec _((void));
|
|
|
|
/* sprintf.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_f_sprintf _((int, VALUE*));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* string.c */
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_str_new _((const char*, long));
|
|
|
|
VALUE rb_str_new2 _((const char*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_str_new3 _((VALUE));
|
|
|
|
VALUE rb_str_new4 _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_tainted_str_new _((const char*, long));
|
|
|
|
VALUE rb_tainted_str_new2 _((const char*));
|
2001-05-30 13:12:34 +04:00
|
|
|
VALUE rb_str_buf_new _((long));
|
|
|
|
VALUE rb_str_buf_new2 _((const char*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_obj_as_string _((VALUE));
|
|
|
|
VALUE rb_str_dup _((VALUE));
|
|
|
|
VALUE rb_str_plus _((VALUE, VALUE));
|
|
|
|
VALUE rb_str_times _((VALUE, VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_str_substr _((VALUE, long, long));
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_str_modify _((VALUE));
|
|
|
|
VALUE rb_str_freeze _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_str_resize _((VALUE, long));
|
|
|
|
VALUE rb_str_cat _((VALUE, const char*, long));
|
2000-04-10 09:48:43 +04:00
|
|
|
VALUE rb_str_cat2 _((VALUE, const char*));
|
|
|
|
VALUE rb_str_append _((VALUE, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_str_concat _((VALUE, VALUE));
|
|
|
|
int rb_str_hash _((VALUE));
|
|
|
|
int rb_str_cmp _((VALUE, VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_str_upto _((VALUE, VALUE, int));
|
2001-05-16 13:05:54 +04:00
|
|
|
void rb_str_update _((VALUE, long, long, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_str_inspect _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_str_split _((VALUE, const char*));
|
2000-03-17 11:58:21 +03:00
|
|
|
void rb_str_associate _((VALUE, VALUE));
|
2001-01-15 10:01:00 +03:00
|
|
|
VALUE rb_str_associated _((VALUE));
|
2000-08-25 12:26:06 +04:00
|
|
|
void rb_str_setter _((VALUE, ID, VALUE*));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* struct.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_struct_new __((VALUE, ...));
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_struct_define __((const char*, ...));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_struct_alloc _((VALUE, VALUE));
|
|
|
|
VALUE rb_struct_aref _((VALUE, VALUE));
|
|
|
|
VALUE rb_struct_aset _((VALUE, VALUE, VALUE));
|
|
|
|
VALUE rb_struct_getmember _((VALUE, ID));
|
1998-01-16 15:19:09 +03:00
|
|
|
/* time.c */
|
2001-05-02 08:22:21 +04:00
|
|
|
VALUE rb_time_new(ANYARGS);
|
1998-01-16 15:19:09 +03:00
|
|
|
/* variable.c */
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_mod_name _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_class_path _((VALUE));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_set_class_path _((VALUE, VALUE, const char*));
|
|
|
|
VALUE rb_path2class _((const char*));
|
1998-01-16 15:19:09 +03:00
|
|
|
void rb_name_class _((VALUE, ID));
|
1999-08-13 09:45:20 +04:00
|
|
|
void rb_autoload _((const char*, const char*));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_f_autoload _((VALUE, VALUE, VALUE));
|
|
|
|
void rb_gc_mark_global_tbl _((void));
|
|
|
|
VALUE rb_f_trace_var _((int, VALUE*));
|
|
|
|
VALUE rb_f_untrace_var _((int, VALUE*));
|
|
|
|
VALUE rb_f_global_variables _((void));
|
1998-01-16 15:19:09 +03:00
|
|
|
void rb_alias_variable _((ID, ID));
|
2000-01-05 07:41:21 +03:00
|
|
|
struct st_table* rb_generic_ivar_table _((VALUE));
|
2001-07-14 19:17:19 +04:00
|
|
|
void rb_copy_generic_ivar _((VALUE,VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
void rb_mark_generic_ivar _((VALUE));
|
|
|
|
void rb_mark_generic_ivar_tbl _((void));
|
|
|
|
void rb_free_generic_ivar _((VALUE));
|
1998-01-16 15:19:09 +03:00
|
|
|
VALUE rb_ivar_get _((VALUE, ID));
|
|
|
|
VALUE rb_ivar_set _((VALUE, ID, VALUE));
|
|
|
|
VALUE rb_ivar_defined _((VALUE, ID));
|
2001-07-25 12:19:49 +04:00
|
|
|
VALUE rb_iv_set _((VALUE, const char *, VALUE));
|
|
|
|
VALUE rb_iv_get _((VALUE, const char *));
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_obj_instance_variables _((VALUE));
|
|
|
|
VALUE rb_obj_remove_instance_variable _((VALUE, VALUE));
|
2001-06-05 11:19:39 +04:00
|
|
|
void *rb_mod_const_at _((VALUE, void*));
|
|
|
|
void *rb_mod_const_of _((VALUE, void*));
|
|
|
|
VALUE rb_const_list _((void*));
|
1999-12-14 09:50:43 +03:00
|
|
|
VALUE rb_mod_constants _((VALUE));
|
|
|
|
VALUE rb_mod_remove_const _((VALUE, VALUE));
|
|
|
|
int rb_const_defined_at _((VALUE, ID));
|
1998-01-16 15:19:09 +03:00
|
|
|
int rb_autoload_defined _((ID));
|
1999-12-14 09:50:43 +03:00
|
|
|
int rb_const_defined _((VALUE, ID));
|
|
|
|
VALUE rb_const_get _((VALUE, ID));
|
|
|
|
VALUE rb_const_get_at _((VALUE, ID));
|
|
|
|
void rb_const_set _((VALUE, ID, VALUE));
|
2000-05-12 13:07:57 +04:00
|
|
|
void rb_const_assign _((VALUE, ID, VALUE));
|
1999-12-14 09:50:43 +03:00
|
|
|
VALUE rb_mod_constants _((VALUE));
|
|
|
|
void rb_autoload_load _((ID));
|
2000-05-12 13:07:57 +04:00
|
|
|
void rb_cvar_declare _((VALUE, ID, VALUE));
|
2000-12-08 10:10:38 +03:00
|
|
|
VALUE rb_cvar_defined _((VALUE, ID));
|
2000-05-12 13:07:57 +04:00
|
|
|
void rb_cvar_set _((VALUE, ID, VALUE));
|
2000-08-28 13:53:42 +04:00
|
|
|
VALUE rb_cvar_get _((VALUE, ID));
|
2000-11-21 17:26:25 +03:00
|
|
|
VALUE rb_cvar_singleton _((VALUE));
|
2001-07-25 15:31:59 +04:00
|
|
|
void rb_cv_set _((VALUE, const char *, VALUE));
|
2001-07-25 12:19:49 +04:00
|
|
|
VALUE rb_cv_get _((VALUE, const char *));
|
|
|
|
void rb_define_class_variable _((VALUE, const char *, VALUE));
|
2000-09-15 10:00:30 +04:00
|
|
|
VALUE rb_mod_class_variables _((VALUE));
|
2000-12-08 10:10:38 +03:00
|
|
|
VALUE rb_mod_remove_cvar _((VALUE, VALUE));
|
1999-01-20 07:59:39 +03:00
|
|
|
/* version.c */
|
|
|
|
void ruby_show_version _((void));
|
|
|
|
void ruby_show_copyright _((void));
|