Ruby 3.4.1p0 (2024-12-25 revision 48d4efcb85000e1ebae42004e963b5d0cedddcf2)
file.h
Go to the documentation of this file.
1#ifndef RBIMPL_INTERN_FILE_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_INTERN_FILE_H
26#include "ruby/internal/value.h"
27
29
30/* file.c */
31
47VALUE rb_file_s_expand_path(int argc, const VALUE *argv);
48
63VALUE rb_file_expand_path(VALUE fname, VALUE dname);
64
80VALUE rb_file_s_absolute_path(int argc, const VALUE *argv);
81
96VALUE rb_file_absolute_path(VALUE fname, VALUE dname);
97
114VALUE rb_file_dirname(VALUE fname);
115
134int rb_find_file_ext(VALUE *feature, const char *const *exts);
135
147VALUE rb_find_file(VALUE path);
148
163VALUE rb_file_directory_p(VALUE _, VALUE path);
164
175VALUE rb_str_encode_ospath(VALUE path);
176
188int rb_is_absolute_path(const char *path);
189
209rb_off_t rb_file_size(VALUE file);
210
212
213#endif /* RBIMPL_INTERN_FILE_H */
Tweaking visibility of C variables/functions.
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition dllexport.h:74
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition dllexport.h:65
Defines RBIMPL_ATTR_NONNULL.
#define RBIMPL_ATTR_NONNULL(list)
Wraps (or simulates) __attribute__((nonnull))
Definition nonnull.h:30
Defines RBIMPL_ATTR_PURE.
#define RBIMPL_ATTR_PURE()
Wraps (or simulates) __attribute__((pure))
Definition pure.h:33
#define _(args)
This was a transition path from K&R to ANSI.
Definition stdarg.h:35
Defines VALUE and ID.
uintptr_t VALUE
Type that represents a Ruby object.
Definition value.h:40