2020-04-10 14:11:40 +09:00
|
|
|
#ifndef RUBY_RE_H /*-*-C++-*-vi:se ft=cpp:*/
|
2007-06-10 03:06:15 +00:00
|
|
|
#define RUBY_RE_H 1
|
2020-04-10 14:11:40 +09:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @author $Author$
|
|
|
|
* @date Thu Sep 30 14:18:32 JST 1993
|
|
|
|
* @copyright Copyright (C) 1993-2007 Yukihiro Matsumoto
|
|
|
|
* @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.
|
|
|
|
*/
|
2020-05-08 18:31:09 +09:00
|
|
|
#include "ruby/internal/config.h"
|
1998-01-16 12:13:05 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2007-06-10 03:06:15 +00:00
|
|
|
#include "ruby/regex.h"
|
2020-05-08 18:31:09 +09:00
|
|
|
#include "ruby/internal/core/rmatch.h"
|
|
|
|
#include "ruby/internal/dllexport.h"
|
1998-01-16 12:13:05 +00:00
|
|
|
|
2020-05-04 15:52:56 +09:00
|
|
|
RBIMPL_SYMBOL_EXPORT_BEGIN()
|
1998-01-16 12:13:05 +00:00
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 06:32:32 +00:00
|
|
|
VALUE rb_reg_regcomp(VALUE);
|
2009-06-30 02:08:54 +00:00
|
|
|
long rb_reg_search(VALUE, VALUE, long, int);
|
2006-03-22 15:03:40 +00:00
|
|
|
VALUE rb_reg_regsub(VALUE, VALUE, struct re_registers *, VALUE);
|
2009-06-30 02:08:54 +00:00
|
|
|
long rb_reg_adjust_startpos(VALUE, VALUE, long, int);
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 06:32:32 +00:00
|
|
|
void rb_match_busy(VALUE);
|
|
|
|
VALUE rb_reg_quote(VALUE);
|
2010-07-21 21:38:25 +00:00
|
|
|
regex_t *rb_reg_prepare_re(VALUE re, VALUE str);
|
2014-12-01 21:30:58 +00:00
|
|
|
int rb_reg_region_copy(struct re_registers *, const struct re_registers *);
|
2010-07-21 21:38:25 +00:00
|
|
|
|
2020-05-04 15:52:56 +09:00
|
|
|
RBIMPL_SYMBOL_EXPORT_END()
|
2007-06-10 03:06:15 +00:00
|
|
|
|
|
|
|
#endif /* RUBY_RE_H */
|