Ruby 3.2.1p31 (2023-02-08 revision 31819e82c88c6f8ecfaeb162519bfa26a14b21fd)
re.h
Go to the documentation of this file.
1#ifndef RUBY_RE_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RUBY_RE_H 1
13#include "ruby/internal/config.h"
14
15#ifdef HAVE_SYS_TYPES_H
16# include <sys/types.h>
17#endif
18
19#include <stdio.h>
20
21#include "ruby/regex.h"
24
25struct re_registers; /* Defined in onigmo.h */
26
28
29
37
61long rb_reg_search(VALUE re, VALUE str, long pos, int dir);
62
81VALUE rb_reg_regsub(VALUE repl, VALUE src, struct re_registers *regs, VALUE rexp);
82
96long rb_reg_adjust_startpos(VALUE re, VALUE str, long pos, int dir);
97
106
127
143int rb_reg_region_copy(struct re_registers *dst, const struct re_registers *src);
144
146
147#endif /* RUBY_RE_H */
Tweaking visibility of C variables/functions.
#define RBIMPL_SYMBOL_EXPORT_END()
Counterpart of RBIMPL_SYMBOL_EXPORT_BEGIN.
Definition: dllexport.h:106
#define RBIMPL_SYMBOL_EXPORT_BEGIN()
Shortcut macro equivalent to RUBY_SYMBOL_EXPORT_BEGIN extern "C" {.
Definition: dllexport.h:97
long rb_reg_search(VALUE re, VALUE str, long pos, int dir)
Runs the passed regular expression over the passed string.
Definition: re.c:1765
regex_t * rb_reg_prepare_re(VALUE re, VALUE str)
Exercises various checks and preprocesses so that the given regular expression can be applied to the ...
Definition: re.c:1643
long rb_reg_adjust_startpos(VALUE re, VALUE str, long pos, int dir)
Tell us if this is a wrong idea, but it seems this function has no usage at all.
Definition: re.c:1650
VALUE rb_reg_regcomp(VALUE str)
Creates a new instance of rb_cRegexp.
Definition: re.c:3369
VALUE rb_reg_quote(VALUE str)
Escapes any characters that would have special meaning in a regular expression.
Definition: re.c:3985
VALUE rb_reg_regsub(VALUE repl, VALUE src, struct re_registers *regs, VALUE rexp)
Substitution.
Definition: re.c:4351
int rb_reg_region_copy(struct re_registers *dst, const struct re_registers *src)
Duplicates a match data.
Definition: re.c:976
Defines struct RMatch.
uintptr_t VALUE
Type that represents a Ruby object.
Definition: value.h:40