Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby31 /
include /
ruby /
internal /
intern /
Delete
Unzip
Name
Size
Permission
Date
Action
select
[ DIR ]
drwxr-xr-x
2025-08-15 19:34
array.h
25.16
KB
-rw-r--r--
2025-04-28 17:55
bignum.h
30.04
KB
-rw-r--r--
2025-04-28 17:55
class.h
15.39
KB
-rw-r--r--
2025-04-28 17:55
compar.h
2.51
KB
-rw-r--r--
2025-04-28 17:55
complex.h
8.21
KB
-rw-r--r--
2025-04-28 17:55
cont.h
10.53
KB
-rw-r--r--
2025-04-28 17:55
dir.h
1.9
KB
-rw-r--r--
2025-04-28 17:55
enum.h
2.82
KB
-rw-r--r--
2025-04-28 17:55
enumerator.h
12.13
KB
-rw-r--r--
2025-04-28 17:55
error.h
9.98
KB
-rw-r--r--
2025-04-28 17:55
eval.h
8.49
KB
-rw-r--r--
2025-04-28 17:55
file.h
9.37
KB
-rw-r--r--
2025-04-28 17:55
gc.h
15.95
KB
-rw-r--r--
2025-04-28 17:55
hash.h
11.48
KB
-rw-r--r--
2025-04-28 17:55
io.h
26.24
KB
-rw-r--r--
2025-04-28 17:55
load.h
9.15
KB
-rw-r--r--
2025-04-28 17:55
marshal.h
5.45
KB
-rw-r--r--
2025-04-28 17:55
numeric.h
7.49
KB
-rw-r--r--
2025-04-28 17:55
object.h
21.66
KB
-rw-r--r--
2025-04-28 17:55
parse.h
6.18
KB
-rw-r--r--
2025-04-28 17:55
proc.h
13.54
KB
-rw-r--r--
2025-04-28 17:55
process.h
11.01
KB
-rw-r--r--
2025-04-28 17:55
random.h
4.3
KB
-rw-r--r--
2025-04-28 17:55
range.h
3.98
KB
-rw-r--r--
2025-04-28 17:55
rational.h
6.34
KB
-rw-r--r--
2025-04-28 17:55
re.h
8.73
KB
-rw-r--r--
2025-04-28 17:55
ruby.h
2.78
KB
-rw-r--r--
2025-04-28 17:55
select.h
3.85
KB
-rw-r--r--
2025-04-28 17:55
signal.h
6.55
KB
-rw-r--r--
2025-04-28 17:55
sprintf.h
6.32
KB
-rw-r--r--
2025-04-28 17:55
string.h
69.99
KB
-rw-r--r--
2025-04-28 17:55
struct.h
8.24
KB
-rw-r--r--
2025-04-28 17:55
thread.h
18.03
KB
-rw-r--r--
2025-04-28 17:55
time.h
6.33
KB
-rw-r--r--
2025-04-28 17:55
variable.h
20.81
KB
-rw-r--r--
2025-04-28 17:55
vm.h
16.52
KB
-rw-r--r--
2025-04-28 17:55
Save
Rename
#ifndef RBIMPL_INTERN_RUBY_H /*-*-C++-*-vi:se ft=cpp:*/ #define RBIMPL_INTERN_RUBY_H /** * @file * @author Ruby developers <ruby-core@ruby-lang.org> * @copyright This file is a part of the programming language Ruby. * Permission is hereby granted, to either redistribute and/or * modify this file, provided that the conditions mentioned in the * file COPYING are met. Consult the file for details. * @warning Symbols prefixed with either `RBIMPL` or `rbimpl` are * implementation details. Don't take them as canon. They could * rapidly appear then vanish. The name (path) of this header file * is also an implementation detail. Do not expect it to persist * at the place it is now. Developers are free to move it anywhere * anytime at will. * @note To ruby-core: remember that this header can be possibly * recursively included from extension libraries written in C++. * Do not expect for instance `__VA_ARGS__` is always available. * We assume C99 for ruby itself but we don't assume languages of * extension libraries. They could be written in C++98. * @brief Process-global APIs. */ #include "ruby/internal/attr/nonnull.h" #include "ruby/internal/dllexport.h" #include "ruby/internal/value.h" RBIMPL_SYMBOL_EXPORT_BEGIN() /* ruby.c */ /** @alias{rb_get_argv} */ #define rb_argv rb_get_argv() /** * The value of `$0` at process bootup. * * @note This is just a snapshot of `$0`, not the backend storage of it. `$0` * could become something different because it is a writable global * variable. Modifying it for instance affects `ps(1)` output. Don't * assume they are synced. */ RUBY_EXTERN VALUE rb_argv0; /* io.c */ /** * Queries the arguments passed to the current process that you can access from * Ruby as `ARGV`. * * @return An array of strings containing arguments passed to the process. */ VALUE rb_get_argv(void); /* ruby.c */ RBIMPL_ATTR_NONNULL(()) /** * Loads the given file. This function opens the given pathname for reading, * parses the contents as a Ruby script, and returns an opaque "node" pointer. * You can then pass it to ruby_run_node() for evaluation. * * @param[in] file File name, or "-" to read from stdin. * @return Opaque "node" pointer. */ void *rb_load_file(const char *file); /** * Identical to rb_load_file(), except it takes the argument as a Ruby's string * instead of C's. * * @param[in] file File name, or "-" to read from stdin. * @return Opaque "node" pointer. */ void *rb_load_file_str(VALUE file); RBIMPL_SYMBOL_EXPORT_END() #endif /* RBIMPL_INTERN_RUBY_H */