Sha256: 3565d2729e2117c14e18f3c8145206d938c21da72cf7f146d760d20d601dd0c7

Contents?: true

Size: 1.26 KB

Versions: 84

Compression:

Stored size: 1.26 KB

Contents

/**********************************************************************

  re.h -

  $Author: akr $
  created at: Thu Sep 30 14:18:32 JST 1993

  Copyright (C) 1993-2007 Yukihiro Matsumoto

**********************************************************************/

#ifndef RUBY_RE_H
#define RUBY_RE_H 1

#if defined(__cplusplus)
extern "C" {
#if 0
} /* satisfy cc-mode */
#endif
#endif

#include <sys/types.h>
#include <stdio.h>

#include "ruby/regex.h"

typedef struct re_pattern_buffer Regexp;

struct rmatch_offset {
    int beg;
    int end;
};

struct rmatch {
    struct re_registers regs;

    int char_offset_updated;
    int char_offset_num_allocated;
    struct rmatch_offset *char_offset;
};

struct RMatch {
    struct RBasic basic;
    VALUE str;
    struct rmatch *rmatch;
    VALUE regexp;  /* RRegexp */
};

#define RMATCH(obj)  (R_CAST(RMatch)(obj))
#define RMATCH_REGS(obj)  (&(R_CAST(RMatch)(obj))->rmatch->regs)

VALUE rb_reg_regcomp(VALUE);
int rb_reg_search(VALUE, VALUE, int, int);
VALUE rb_reg_regsub(VALUE, VALUE, struct re_registers *, VALUE);
int rb_reg_adjust_startpos(VALUE, VALUE, int, int);
void rb_match_busy(VALUE);
VALUE rb_reg_quote(VALUE);

#if defined(__cplusplus)
#if 0
{ /* satisfy cc-mode */
#endif
}  /* extern "C" { */
#endif

#endif /* RUBY_RE_H */

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
rhodes-3.1.1 platform/shared/ruby/include/ruby/re.h
rhodes-3.1.1.beta platform/shared/ruby/include/ruby/re.h
rhodes-3.1.0 platform/shared/ruby/include/ruby/re.h
rhodes-3.1.0.beta.5 platform/shared/ruby/include/ruby/re.h
rhodes-3.1.0.beta.4 platform/shared/ruby/include/ruby/re.h
rhodes-3.1.0.beta.3 platform/shared/ruby/include/ruby/re.h
rhodes-3.1.0.beta.2 platform/shared/ruby/include/ruby/re.h
rhodes-3.1.0.beta.1 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.2 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.2.beta.1 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.8 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.7 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.6 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.5 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.4 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.3 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.1.beta.2 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.0 platform/shared/ruby/include/ruby/re.h
rhodes-3.0.0.beta.7 platform/shared/ruby/include/ruby/re.h