Ruby 4.1.0dev (2026-09-07 revision b57404b461ba8bf34e802d86b0db78388216e182)
load.h
1#ifndef INTERNAL_LOAD_H /*-*-C-*-vi:se ft=c:*/
2#define INTERNAL_LOAD_H
11#include "ruby/ruby.h" /* for VALUE */
12
13/* load.c */
14VALUE rb_get_expanded_load_path(long *maxlen);
15VALUE rb_load_entrypoint(VALUE fname, VALUE wrap);
16VALUE rb_require_relative_entrypoint(VALUE fname);
17int rb_require_internal(VALUE fname);
18NORETURN(void rb_load_fail(VALUE, const char*));
19
20#endif /* INTERNAL_LOAD_H */
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40